(svn r15296) -Cleanup: remove redundant _MSC_VER >= 1400 checks, older versions aren't supported anymore. One check in stdafx.h is enough

This commit is contained in:
smatz
2009-01-30 17:54:48 +00:00
parent 1c7cb8368c
commit df79660531
5 changed files with 10 additions and 26 deletions

View File

@@ -10,7 +10,7 @@
#include "core/math_func.hpp"
#include "map_func.h"
#if defined(_MSC_VER) && _MSC_VER >= 1400 /* VStudio 2005 is stupid! */
#if defined(_MSC_VER)
/* Why the hell is that not in all MSVC headers?? */
extern "C" _CRTIMP void __cdecl _assert(void *, void *, unsigned);
#endif