| 1314 | // Should be preferably called fully qualified, like ::Catch::Detail::stringify |
| 1315 | template <typename T> |
| 1316 | std::string stringify(const T& e) { |
| 1317 | return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e); |
| 1318 | } |
| 1319 | |
| 1320 | template<typename E> |
| 1321 | std::string convertUnknownEnumToString( E e ) { |
no test coverage detected