| 434 | |
| 435 | template <typename T> |
| 436 | inline std::string INIReader::V2String(const T& v) const { |
| 437 | std::stringstream ss; |
| 438 | ss << v; |
| 439 | return ss.str(); |
| 440 | } |
| 441 | |
| 442 | template <typename T> |
| 443 | inline std::string INIReader::Vec2String(const std::vector<T>& v) const { |
nothing calls this directly
no outgoing calls
no test coverage detected