Fix comment

This commit is contained in:
Ben Payne 2015-03-08 20:12:14 -04:00
parent 27c9e79906
commit 29934cdc27

View file

@ -58,7 +58,7 @@ typedef char UTF8; ///< Compiler independent 8 bit Unicode enc
#if defined(_MSC_VER) && defined(__clang__)
// Clang's MSVC compatibility mode doesn't currently support /Zc:wchar_t-,
// which we rely on to avoid type conversion errors when calling system
// APIs when wchar_t is defined as unsigned short. So, just define UTF16
// APIs when UTF16 is defined as unsigned short. So, just define UTF16
// as wchar_t instead since it's always a 2 byte unsigned on windows anyway.
typedef wchar_t UTF16;
#else