X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.h;h=2a1d03af7c4349a71f97d2614df2e28b23072d92;hp=eb0353a48afe255d01a80cf9ddc1d7f7c0ad72e3;hb=e0504ab876a997321102f040ab88203cb893db12;hpb=fb03188fc7e96f8bd21177fa2a2990cf8dde7575 diff --git a/src/uci.h b/src/uci.h index eb0353a4..2a1d03af 100644 --- a/src/uci.h +++ b/src/uci.h @@ -2,6 +2,7 @@ Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2015-2016 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -48,7 +49,7 @@ public: Option(OnChange = nullptr); Option(bool v, OnChange = nullptr); Option(const char* v, OnChange = nullptr); - Option(int v, int min, int max, OnChange = nullptr); + Option(int v, int minv, int maxv, OnChange = nullptr); Option& operator=(const std::string&); void operator<<(const Option&);