]> git.sesse.net Git - stockfish/blobdiff - src/bitbase.cpp
Retire operator|(File f, Rank r)
[stockfish] / src / bitbase.cpp
index cd6a7329724e4260bc1529ca9756e82b8265adb9..b73b72c4c17506f2e2dc7da58ada30a7caa93ccb 100644 (file)
@@ -110,7 +110,7 @@ namespace {
     wksq = Square((idx >>  0) & 0x3F);
     bksq = Square((idx >>  6) & 0x3F);
     us   = Color ((idx >> 12) & 0x01);
-    psq  = File  ((idx >> 13) & 0x03) | Rank(RANK_7 - (idx >> 15));
+    psq  = make_square(File((idx >> 13) & 0x03), Rank(RANK_7 - (idx >> 15)));
     result  = UNKNOWN;
 
     // Check if two pieces are on the same square or if a king can be captured