mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00: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();
|
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)
|
Option::Option(const char* nm, const char* def, OptionType t)
|
||||||
: name(nm), defaultValue(def), currentValue(def), type(t), minValue(0), maxValue(0) {}
|
: name(nm), defaultValue(def), currentValue(def), type(t), minValue(0), maxValue(0) {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user