| 113 | |
| 114 | template <typename T> |
| 115 | static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString( |
| 116 | const T& value) { |
| 117 | std::stringstream ss; |
| 118 | ss << value; |
| 119 | return ss.str(); |
| 120 | } |
| 121 | |
| 122 | template <typename T> |
| 123 | static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString( |
no test coverage detected