X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftune.h;h=75ab484acf066bff951e7d40b1e79d4e28e302b2;hb=ad926d34c0105d523bfa5cb92cbcf9f337d54c08;hp=b5c715b3caa752f5b385a0c161e7776fed8d6d19;hpb=bd756ee45ce1181a90ec149892ccf0e4cfe3639e;p=stockfish diff --git a/src/tune.h b/src/tune.h index b5c715b3..75ab484a 100644 --- a/src/tune.h +++ b/src/tune.h @@ -1,6 +1,6 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 - Copyright (C) 2004-2021 The Stockfish developers (see AUTHORS file) + Copyright (C) 2004-2022 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 @@ -84,7 +84,7 @@ class Tune { static Tune& instance() { static Tune t; return t; } // Singleton - // Use polymorphism to accomodate Entry of different types in the same vector + // Use polymorphism to accommodate Entry of different types in the same vector struct EntryBase { virtual ~EntryBase() = default; virtual void init_option() = 0;