aboutsummaryrefslogtreecommitdiffstats
path: root/include/chess_board.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/chess_board.hpp')
-rw-r--r--include/chess_board.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/chess_board.hpp b/include/chess_board.hpp
index fef1f69..d3516fc 100644
--- a/include/chess_board.hpp
+++ b/include/chess_board.hpp
@@ -27,13 +27,11 @@ typedef std::unique_ptr<ChessPiece> chessPiecePtr;
class ChessBoard {
public:
ChessBoard();
- ChessBoard(const ChessBoard& other) = default;
- virtual ~ChessBoard() = default;
void printBoard();
protected:
private:
- static const unsigned CHESS_BOARD_SIZE = 64;
+ static const unsigned BOARD_SIZE = 64;
boardVector board;
};