.Core: IsNaN support for mingw

git-svn-id: svn://ultimatepp.org/upp/trunk@3643 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-07-11 19:40:43 +00:00
parent 8ae1bee3d3
commit 2f57be366b

View file

@ -247,7 +247,7 @@ typedef long long unsigned uint64;
typedef uint64 qword;
#ifdef COMPILER_MSC
#ifdef PLATFORM_WIN32
inline bool IsNaN(double d) { return _isnan(d); }
#else
inline bool IsNaN(double d) { return isnan(d); }