Enable C_ASSERT only on x86. Fixes x64 build.

svn path=/trunk/; revision=67006
This commit is contained in:
Timo Kreuzer 2015-04-01 17:51:05 +00:00
parent aae247f9ff
commit 511de2ccea

View file

@ -58,7 +58,9 @@ typedef struct _CONSOLE_STATE_INFO
WCHAR ConsoleTitle[ANYSIZE_ARRAY];
} CONSOLE_STATE_INFO, *PCONSOLE_STATE_INFO;
#ifdef _M_IX86
C_ASSERT(sizeof(CONSOLE_STATE_INFO) == 0xD0);
#endif
#pragma pack(pop)