Skip to content

Commit

Permalink
Fixed clang compilation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpldgr committed Nov 26, 2024
1 parent b10bcfb commit 4da727a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/movegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,12 +541,12 @@ template ExtMove* generate<QUIETS>(const Position&, ExtMove*);
template ExtMove* generate<EVASIONS>(const Position&, ExtMove*);
template ExtMove* generate<QUIET_CHECKS>(const Position&, ExtMove*);
template ExtMove* generate<NON_EVASIONS>(const Position&, ExtMove*);
template class MoveList<CAPTURES>;
template class MoveList<QUIETS>;
template class MoveList<EVASIONS>;
template class MoveList<QUIET_CHECKS>;
template class MoveList<NON_EVASIONS>;
template class MoveList<LEGAL>;
template struct MoveList<CAPTURES>;
template struct MoveList<QUIETS>;
template struct MoveList<EVASIONS>;
template struct MoveList<QUIET_CHECKS>;
template struct MoveList<NON_EVASIONS>;
template struct MoveList<LEGAL>;

/// generate<LEGAL> generates all the legal moves in the given position

Expand Down

0 comments on commit 4da727a

Please sign in to comment.