]> git.sesse.net Git - stockfish/blobdiff - src/pawns.cpp
Prefer 0 to EmptyBoardBB
[stockfish] / src / pawns.cpp
index d5514e2eaea411e474e1802230ac1da2985ec95b..3aede5adfa7f111b42ddef9332e9182a5dfba8f5 100644 (file)
@@ -182,7 +182,7 @@ Score PawnInfoTable::evaluate_pawns(const Position& pos, Bitboard ourPawns,
       // pawn on neighboring files is higher or equal than the number of
       // enemy pawns in the forward direction on the neighboring files.
       candidate =   !(opposed | passed | backward | isolated)
-                 && (b = attack_span_mask(Them, s + pawn_push(Us)) & ourPawns) != EmptyBoardBB
+                 && (b = attack_span_mask(Them, s + pawn_push(Us)) & ourPawns) != 0
                  &&  count_1s<Max15>(b) >= count_1s<Max15>(attack_span_mask(Us, s) & theirPawns);
 
       // Passed pawns will be properly scored in evaluation because we need