mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 10:06:26 +08:00
Trivial code style fixes
Mainly to sync mine and official repo. No functional change.
This commit is contained in:
3
src/tt.h
3
src/tt.h
@@ -50,8 +50,8 @@ private:
|
||||
move16 = (uint16_t)m;
|
||||
value16 = (int16_t)v;
|
||||
evalValue = (int16_t)ev;
|
||||
genBound8 = (uint8_t)(g | b);
|
||||
depth8 = (uint8_t)(d - DEPTH_NONE);
|
||||
genBound8 = g | (uint8_t)b;
|
||||
}
|
||||
|
||||
uint16_t key16;
|
||||
@@ -70,7 +70,6 @@ private:
|
||||
const unsigned TTClusterSize = 3;
|
||||
|
||||
struct TTCluster {
|
||||
|
||||
TTEntry entry[TTClusterSize];
|
||||
char padding[2];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user