| 1619 | // Should be preferably called fully qualified, like ::Catch::Detail::stringify |
| 1620 | template <typename T> |
| 1621 | std::string stringify(const T& e) { |
| 1622 | return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e); |
| 1623 | } |
| 1624 | |
| 1625 | template<typename E> |
| 1626 | std::string convertUnknownEnumToString( E e ) { |
no test coverage detected