| 1654 | |
| 1655 | template<typename E> |
| 1656 | std::string convertUnknownEnumToString( E e ) { |
| 1657 | return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); |
| 1658 | } |
| 1659 | |
| 1660 | #if defined(_MANAGED) |
| 1661 | template <typename T> |
no test coverage detected