X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fcompiler.h;h=939d9f319c6ad18b2942f7125ebd7fc6504688e4;hb=dd044844e52e939af0c4e979f25583862123bb7a;hp=eca95fe5274a4139052bf9cc4473b42cefd4ce86;hpb=fd42294faf5fbc3cc9807c98c2b9bc6d32df6173;p=simgear.git diff --git a/simgear/compiler.h b/simgear/compiler.h index eca95fe5..939d9f31 100644 --- a/simgear/compiler.h +++ b/simgear/compiler.h @@ -63,6 +63,9 @@ # if _MSC_VER >= 1200 // msvc++ 6.0 or greater # define isnan _isnan # define snprintf _snprintf +# if _MSC_VER < 1500 +# define vsnprintf _vsnprintf +# endif # define copysign _copysign # pragma warning(disable: 4786) // identifier was truncated to '255' characters @@ -158,10 +161,6 @@ inline int (isnan)(double r) { return !(r <= 0 || r >= 0); } # include // isnan #endif -#if defined(__MINGW32__) -# define isnan(x) _isnan(x) -#endif - // // No user modifiable definitions beyond here.