| 1304 | // Should be preferably called fully qualified, like ::Catch::Detail::stringify |
| 1305 | template <typename T> |
| 1306 | std::string stringify(const T& e) { |
| 1307 | return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e); |
| 1308 | } |
| 1309 | |
| 1310 | template<typename E> |
| 1311 | std::string convertUnknownEnumToString( E e ) { |
no test coverage detected