| 98 | |
| 99 | template <typename T> |
| 100 | static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString( |
| 101 | const T& value) { |
| 102 | std::stringstream ss; |
| 103 | ss << value; |
| 104 | return ss.str(); |
| 105 | } |
| 106 | |
| 107 | template <typename T> |
| 108 | static inline enable_if_t<!has_enum_traits<T>::value, std::string> GenericToString( |
no test coverage detected