| 1640 | // Should be preferably called fully qualified, like ::Catch::Detail::stringify |
| 1641 | template <typename T> |
| 1642 | std::string stringify(const T& e) { |
| 1643 | return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e); |
| 1644 | } |
| 1645 | |
| 1646 | template<typename E> |
| 1647 | std::string convertUnknownEnumToString( E e ) { |
no test coverage detected