MSVC 2013 and later define std::isnan

This commit is contained in:
Erik Hofman 2016-05-25 09:08:52 +02:00
parent 857f7c9e61
commit 87c2427cfe

View File

@ -63,7 +63,7 @@
#ifdef _MSC_VER
# define bcopy(from, to, n) memcpy(to, from, n)
# if _MSC_VER >= 1200 // msvc++ 6.0 or greater
# if _MSC_VER >= 1200 && _MSC_VER < 1800 // msvc++ 6.0 up to MSVC2013
# define isnan _isnan
# define snprintf _snprintf
# if _MSC_VER < 1500