Skip to content

Commit

Permalink
WIP: Test fix ofr compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
lunathanael committed Aug 19, 2024
1 parent ff8e8f3 commit 63afca7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/botris/_core/board.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ void bind_board(nb::module_ &m) {
.def("is_low", &Board::is_low)

.def_rw("board", &Board::board)
.def("copy", [](const Board &self) {
Board copy = self;
return copy;
.def("copy", [](const Board &other) {
Board board_copy = other;
return board_copy;
});
}

0 comments on commit 63afca7

Please sign in to comment.