| 1593 | #if defined(CATCH_CONFIG_CPP11_IS_ENUM) |
| 1594 | template<typename T> |
| 1595 | static std::string convert( T const& v ) |
| 1596 | { |
| 1597 | return EnumStringMaker<T>::convert( v ); |
| 1598 | } |
| 1599 | #else |
| 1600 | template<typename T> |
| 1601 | static std::string convert( T const& ) { return unprintableString; } |
nothing calls this directly
no outgoing calls
no test coverage detected