From: Erik Hofman Date: Tue, 24 May 2016 15:32:22 +0000 (+0200) Subject: Do not expose both std::isnan() and isnan() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1ca9c7dbf6f42be1a43a5e5621563af8f6c0ecb2;p=simgear.git Do not expose both std::isnan() and isnan() --- diff --git a/simgear/sound/sample_group.cxx b/simgear/sound/sample_group.cxx index 70df9aa1..dbbb22ab 100644 --- a/simgear/sound/sample_group.cxx +++ b/simgear/sound/sample_group.cxx @@ -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