| 464 | template<> bool VariableImpl<bool>::GetBool() const { return GetData(); } |
| 465 | template<> int VariableImpl<bool>::GetInt() const { return GetData()==true ? 1 : 0; } |
| 466 | template<> float VariableImpl<bool>::GetFloat() const { return GetData()==true ? 1.f : 0.f; } |
| 467 | template<> std::string const& VariableImpl<bool>::GetString() const |
| 468 | { |
| 469 | static const std::string _true = "true", _false = "false"; |
nothing calls this directly
no outgoing calls
no test coverage detected