mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-23 05:07:14 +00:00
Fix one error and all warnings on MSVC 2026
The error is "C1001: Internal compiler error." in uci.cpp on line 370 of master. For some reason the compiler can't handle the std::size(hashfullAges) inside the lambda. Older MSVC versions had no problem. Most of the warnings are due to implicit type conversions "conversion from type A to type B, possible loss of data" many of which have been present for a while. closes https://github.com/official-stockfish/Stockfish/pull/6464 No functional change
This commit is contained in:
+1
-1
@@ -91,7 +91,7 @@ void TimeManagement::init(Search::LimitsType& limits,
|
||||
|
||||
// If less than one second, gradually reduce mtg
|
||||
if (scaledTime < 1000)
|
||||
centiMTG = scaledTime * 5.051;
|
||||
centiMTG = int(scaledTime * 5.051);
|
||||
|
||||
// Make sure timeLeft is > 0 since we may use it as a divisor
|
||||
TimePoint timeLeft =
|
||||
|
||||
Reference in New Issue
Block a user