diff options
author | smatz <smatz@openttd.org> | 2009-01-30 17:54:48 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-01-30 17:54:48 +0000 |
commit | df7966053102ed6e509992554ab7544c56454f26 (patch) | |
tree | 1e4742d382679303b0a826121f73634dee538903 /src/map.cpp | |
parent | 1c7cb8368cb90a5e94daed132c6f49be40931c81 (diff) | |
download | openttd-df7966053102ed6e509992554ab7544c56454f26.tar.xz |
(svn r15296) -Cleanup: remove redundant _MSC_VER >= 1400 checks, older versions aren't supported anymore. One check in stdafx.h is enough
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp index 72a4f550f..76ff175e4 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -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 |