MCPcopy Create free account
hub / github.com/c42f/tinyformat / is_wchar

Class is_wchar

tinyformat.h:215–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213
214// Detect when a type is not a wchar_t string
215template<typename T> struct is_wchar { typedef int tinyformat_wchar_is_not_supported; };
216template<> struct is_wchar<wchar_t*> {};
217template<> struct is_wchar<const wchar_t*> {};
218template<int n> struct is_wchar<const wchar_t[n]> {};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected