| 213 | |
| 214 | // Detect when a type is not a wchar_t string |
| 215 | template<typename T> struct is_wchar { typedef int tinyformat_wchar_is_not_supported; }; |
| 216 | template<> struct is_wchar<wchar_t*> {}; |
| 217 | template<> struct is_wchar<const wchar_t*> {}; |
| 218 | template<int n> struct is_wchar<const wchar_t[n]> {}; |
nothing calls this directly
no outgoing calls
no test coverage detected