| 823 | // Should be preferably called fully qualified, like ::Catch::Detail::stringify |
| 824 | template <typename T> |
| 825 | std::string stringify(const T& e) { |
| 826 | return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e); |
| 827 | } |
| 828 | |
| 829 | template<typename E> |
| 830 | std::string convertUnknownEnumToString( E e ) { |
no test coverage detected