mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 09:37:16 +08:00
Fix indentation in movepicker.cpp
Fix indentation in movepicker.cpp and evaluate.cpp. Also move the PickType enum out of global space. No functional change
This commit is contained in:
committed by
Stéphane Nicolet
parent
a03e98dcd3
commit
280022baf7
@@ -412,7 +412,7 @@ namespace {
|
||||
|
||||
constexpr Color Them = (Us == WHITE ? BLACK : WHITE);
|
||||
constexpr Bitboard Camp = (Us == WHITE ? AllSquares ^ Rank6BB ^ Rank7BB ^ Rank8BB
|
||||
: AllSquares ^ Rank1BB ^ Rank2BB ^ Rank3BB);
|
||||
: AllSquares ^ Rank1BB ^ Rank2BB ^ Rank3BB);
|
||||
|
||||
const Square ksq = pos.square<KING>(Us);
|
||||
Bitboard weak, b, b1, b2, safe, unsafeChecks, pinned;
|
||||
|
||||
Reference in New Issue
Block a user