1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 08:13:08 +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:
Marco Costalba 2008-09-01 16:58:02 +02:00
parent 35010b4938
commit e5068c4734

View file

@ -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) {}