| 52 | // ******************************************************************** |
| 53 | |
| 54 | template < typename T > struct TypeDesc { static const char* Name() { return ""; } }; |
| 55 | template <> struct TypeDesc< char > { static const char* Name() { return "<char>"; } }; |
| 56 | template <> struct TypeDesc< unsigned char > { static const char* Name() { return "<unsigned char>"; } }; |
| 57 | template <> struct TypeDesc< signed char > { static const char* Name() { return "<signed char>"; } }; |
nothing calls this directly
no outgoing calls
no test coverage detected