If writing code which may be compiled with different character types, is TCHAR
still the right type to use e.g std::basic_stringstream<TCHAR>
Or is there now some official C++/STL type which is preferred, in the way wchar_t
replaces WCHAR
, true
replaces TRUE
and nullptr
replaces NULL
?
I'm talking about cases where I'm using classes like basic_string
, templated explicitly with TCHAR.