Fixed compilation error due to missing functions from cmath

IBM XLC has no functions from <cmath> under the std namespace. Added
a workaround for XLC on AIX.
This commit is contained in:
Mathäus Mendel 2016-03-07 16:39:18 -03:00
parent 6dcf71dd96
commit 80ce6016dd

View File

@ -25,6 +25,22 @@
#include <cmath>
#if defined(POCO_OS_AIX)
namespace std {
using ::isinf;
using ::isnan;
} // namespace std
#endif
namespace Poco {