mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-06 10:53:50 +08:00
ucioptions: Fix stringification of a bool
We want stringify a bool as "true" and "false", not "1" and "0". Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -305,6 +305,12 @@ namespace {
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
template<>
|
||||
std::string Option::stringify(const bool& v)
|
||||
{
|
||||
return v ? "true" : "false";
|
||||
}
|
||||
|
||||
Option::Option(const char* nm, const char* def, OptionType t)
|
||||
: name(nm), defaultValue(def), currentValue(def), type(t), minValue(0), maxValue(0) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user