Do not expose both std::isnan() and isnan()

This commit is contained in:
Erik Hofman 2016-05-24 17:32:22 +02:00
parent e9ea5e9036
commit 91f184caff

View 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