]> git.mxchange.org Git - simgear.git/commitdiff
Do not expose both std::isnan() and isnan()
authorErik Hofman <erik@ehofman.com>
Tue, 24 May 2016 15:32:22 +0000 (17:32 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 13 Aug 2016 08:21:16 +0000 (10:21 +0200)
simgear/sound/sample_group.cxx

index 70df9aa1b6cbe88ff33e466ec71849ecc37157a3..dbbb22ab831af36ed2572d377bfe6811896f2527 100644 (file)
@@ -33,7 +33,7 @@
 #include "soundmgr_openal_private.hxx"
 #include "sample_group.hxx"
 
-#ifdef HAVE_STD_ISNAN
+#if defined(HAVE_STD_ISNAN) && !defined(HAVE_ISNAN)
 using std::isnan;
 #endif