]> git.sesse.net Git - stockfish/blobdiff - src/pawns.h
Simplify PvNode reduction
[stockfish] / src / pawns.h
index af0370fc41aa76abd70ab2889a6741ca3aed0f7f..d20e7c2ebe52786d715cf427a62aa31dbe34104b 100644 (file)
@@ -1,6 +1,6 @@
 /*
   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
-  Copyright (C) 2004-2022 The Stockfish developers (see AUTHORS file)
+  Copyright (C) 2004-2023 The Stockfish developers (see AUTHORS file)
 
   Stockfish is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -61,7 +61,7 @@ struct Entry {
   int blockedCount;
 };
 
-typedef HashTable<Entry, 131072> Table;
+using Table = HashTable<Entry, 131072>;
 
 Entry* probe(const Position& pos);