From f43f09bf310dc9a02e2acce36ffcfbe445ac1a80 Mon Sep 17 00:00:00 2001 From: "David J. Vine" Date: Thu, 12 Sep 2019 13:28:54 -0700 Subject: [PATCH] Had to make this change to compile on Ubuntu 16.04 with gcc 5.4 and qmake 5.13. --- qeframeworkSup/project/common/QEPlatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qeframeworkSup/project/common/QEPlatform.cpp b/qeframeworkSup/project/common/QEPlatform.cpp index 8fdfdb3f..b0dc0e14 100644 --- a/qeframeworkSup/project/common/QEPlatform.cpp +++ b/qeframeworkSup/project/common/QEPlatform.cpp @@ -47,7 +47,7 @@ bool QEPlatform::isNaN (const double x) #ifdef WIN32 return _isnan (x); #else - return isnan (x); + return std::isnan (x); #endif }