For MSVC, explicitly include assert.h so that we can override the MSVC

version of assert(), which gets implicitly included later.
This commit is contained in:
Aaron Giles 2010-10-19 14:30:14 +00:00
parent ec93220f95
commit 9c553510dd

View File

@ -42,6 +42,7 @@
#define _WIN32_WINNT 0x0501
#ifdef _MSC_VER
#include <assert.h>
#include <malloc.h>
#define alloca _alloca
#define round(x) floor((x) + 0.5)