From: Erik Hofman Date: Tue, 24 May 2016 12:51:17 +0000 (+0200) Subject: Revert the check fro std::isnan() and isnan() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb405f614123ba120ba0998f2d0a896bb97a99f0;p=simgear.git Revert the check fro std::isnan() and isnan() --- diff --git a/simgear/math/SGMisc.hxx b/simgear/math/SGMisc.hxx index c317b431..79030536 100644 --- a/simgear/math/SGMisc.hxx +++ b/simgear/math/SGMisc.hxx @@ -153,10 +153,10 @@ public: /// Use with care: allways code that you do not need to use that! static bool isNaN(const T& v) { -#ifdef HAVE_ISNAN - return (isnan(v) != 0); -#elif defined HAVE_STD_ISNAN +#ifdef HAVE_STD_ISNAN return std::isnan(v); +#elif defined HAVE_ISNAN + return (isnan(v) != 0); #else // Use that every compare involving a NaN returns false // But be careful, some usual compiler switches like for example