From 1ca9c7dbf6f42be1a43a5e5621563af8f6c0ecb2 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Tue, 24 May 2016 17:32:22 +0200 Subject: [PATCH] Do not expose both std::isnan() and isnan() --- simgear/sound/sample_group.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2