]> git.mxchange.org Git - simgear.git/commitdiff
Probably a better fix
authorErik Hofman <erik@ehofman.com>
Wed, 25 May 2016 12:30:06 +0000 (14:30 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 13 Aug 2016 08:21:16 +0000 (10:21 +0200)
simgear/compiler.h

index 4e2bea291a762b5df039f2ce66a96778bd78b4b7..0f0c83473a3a743383c9941d6d6ef68148060ba5 100644 (file)
 #ifdef _MSC_VER
 #  define bcopy(from, to, n) memcpy(to, from, n)
 
-#  if _MSC_VER >= 1200  && _MSC_VER < 1800 // msvc++ 6.0 up to MSVC2013
-#    define isnan _isnan
+#  if _MSC_VER >= 1200 // msvc++ 6.0 up to MSVC2013
+#    if _MSC_VER < 1800
+#      define isnan _isnan
+#    endif
 #    define snprintf _snprintf
 #    if _MSC_VER < 1500
 #      define vsnprintf _vsnprintf