| 852 | } |
| 853 | |
| 854 | template <typename E> std::string convertUnknownEnumToString(E e) { |
| 855 | return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); |
| 856 | } |
| 857 | |
| 858 | #if defined(_MANAGED) |
| 859 | template <typename T> std::string stringify(T ^ e) { |
no test coverage detected