| 1618 | bool IsEnum = std::is_enum<T>::value |
| 1619 | > |
| 1620 | struct EnumStringMaker |
| 1621 | { |
| 1622 | static std::string convert( T const& ) { return unprintableString; } |
| 1623 | }; |
| 1624 | |
| 1625 | template<typename T> |
| 1626 | struct EnumStringMaker<T,true> |
nothing calls this directly
no outgoing calls
no test coverage detected