1
0
Fork 0

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>
sf_2.3.1_base
Marco Costalba 2008-09-01 16:58:02 +02:00
parent 35010b4938
commit e5068c4734
1 changed files with 6 additions and 0 deletions

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