| 1624 | |
| 1625 | template<typename E> |
| 1626 | std::string convertUnknownEnumToString( E e ) { |
| 1627 | return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); |
| 1628 | } |
| 1629 | |
| 1630 | #if defined(_MANAGED) |
| 1631 | template <typename T> |
no test coverage detected