diff --git a/src/position.h b/src/position.h index 37d55ed8..9ed72393 100644 --- a/src/position.h +++ b/src/position.h @@ -89,8 +89,9 @@ struct StateInfo { class Position { - Position(); // No default or copy c'tor allowed - Position(const Position& pos); + // No default or copy c'tor allowed, default c'tor will not be generated + // anyhow because of user-defined c'tors. + Position(const Position&); public: Position(const Position& pos, int threadID);