mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00:00
Fix MSVC error
Compiling the current master with MSVC gives the following error: ``` search.cpp(956): error C2660: 'operator *': function does not take 1 arguments types.h(303): note: see declaration of 'operator *' ``` This was introduced in commit: https://github.com/official-stockfish/Stockfish/commit/88de112b84a5285c2afb3e075a05c2ab8ad3fd33 We use a suggestion by @vondele to fix the error, thanks! No functional change.
This commit is contained in:
committed by
Stéphane Nicolet
parent
9d219c07e4
commit
745160572f
+1
-1
@@ -951,7 +951,7 @@ moves_loop: // When in check, search starts from here
|
||||
continue;
|
||||
}
|
||||
else if ( !extension // (~20 Elo)
|
||||
&& !pos.see_ge(move, -Value(PawnValueEg * (depth / ONE_PLY))))
|
||||
&& !pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY)))
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user