From 29934cdc2712d9af91a18b70612d7a8a81965aac Mon Sep 17 00:00:00 2001 From: Ben Payne Date: Sun, 8 Mar 2015 20:12:14 -0400 Subject: [PATCH] Fix comment --- Engine/source/platform/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/platform/types.h b/Engine/source/platform/types.h index 256337214..96ceb12f0 100644 --- a/Engine/source/platform/types.h +++ b/Engine/source/platform/types.h @@ -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