mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
No need to declare default Position c'tor
Pointed out by Rein Halbersma. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+3
-2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user