mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
Retire copy c'tor from class Position
Not needed. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -94,7 +94,6 @@ struct ReducedStateInfo {
|
||||
class Position {
|
||||
public:
|
||||
Position() {}
|
||||
Position(const Position& p) { *this = p; }
|
||||
Position(const Position& p, Thread* t) { *this = p; thisThread = t; }
|
||||
Position(const std::string& f, bool c960, Thread* t) { from_fen(f, c960, t); }
|
||||
Position& operator=(const Position&);
|
||||
|
||||
Reference in New Issue
Block a user