Shrink Enum Sizes

Passed STC:
LLR: 2.95 (-2.94,2.94) <0.00,2.00>
Total: 110848 W: 28974 L: 28564 D: 53310
Ptnml(0-2): 302, 12118, 30132, 12612, 260
https://tests.stockfishchess.org/tests/view/68242770a527315e07ccca38

closes https://github.com/official-stockfish/Stockfish/pull/6063

no functional change
This commit is contained in:
Shawn Xu
2025-05-19 07:17:39 +02:00
committed by Joost VandeVondele
parent 6b7e05f0c5
commit e4b0f37493
4 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ namespace Stockfish {
class Position;
class Move;
class Score;
enum Square : int;
enum Square : int8_t;
using Value = int;
class UCIEngine {