| 1647 | |
| 1648 | template<typename E> |
| 1649 | std::string convertUnknownEnumToString( E e ) { |
| 1650 | return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); |
| 1651 | } |
| 1652 | |
| 1653 | #if defined(_MANAGED) |
| 1654 | template <typename T> |
no test coverage detected