| 13 | { |
| 14 | template<> |
| 15 | void Converter<int>::ToVal(const std::string& pStr, int& pVal) const |
| 16 | { |
| 17 | pVal = static_cast<int>(roundf(100.0f * std::stof(pStr))); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | int main() |
nothing calls this directly
no outgoing calls
no test coverage detected