Provide a specialized function overload for Convert::ToDouble(const Value&)

This commit is contained in:
Gunnar Beutner 2014-11-17 13:59:29 +01:00
parent c0639c5bca
commit 77b746841a
1 changed files with 5 additions and 0 deletions

View File

@ -59,6 +59,11 @@ public:
}
}
static inline double ToDouble(const Value& val)
{
return val;
}
static bool ToBool(const String& val);
template<typename T>