aboutsummaryrefslogtreecommitdiffstats
path: root/include/chess_ai.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/chess_ai.hpp')
-rw-r--r--include/chess_ai.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/chess_ai.hpp b/include/chess_ai.hpp
index c682bd2..c1496e3 100644
--- a/include/chess_ai.hpp
+++ b/include/chess_ai.hpp
@@ -141,7 +141,7 @@ namespace chess_ai {
// overloading operators
// so that we can make two copies of a point
- chess_piece& operator=(const chess_piece& piece) {
+ chess_piece& operator==(const chess_piece& piece) {
if(this != &piece) {
this->set(piece.type, piece.colour, piece.x, piece.y);
}