]> git.sesse.net Git - stockfish/blobdiff - src/position.cpp
Default argument for see_ge()
[stockfish] / src / position.cpp
index 03d8bf8ce5f796da279297306f61104165afbc51..0449222e016406f5e2e63804e8f695e5771cf28c 100644 (file)
@@ -65,7 +65,7 @@ PieceType min_attacker(const Bitboard* bb, Square to, Bitboard stmAttackers,
 
   Bitboard b = stmAttackers & bb[Pt];
   if (!b)
-      return min_attacker<Pt+1>(bb, to, stmAttackers, occupied, attackers);
+      return min_attacker<Pt + 1>(bb, to, stmAttackers, occupied, attackers);
 
   occupied ^= b & ~(b - 1);