libcom: fix colliding isnan/isinf between C99 and C++0x for gcc-4
This fix can be removed once support for gcc-4 is dropped in 2038
This commit is contained in:
@@ -18,8 +18,10 @@
|
||||
#include <cmath>
|
||||
|
||||
using std::isfinite;
|
||||
#ifndef __GXX_EXPERIMENTAL_CXX0X__
|
||||
using std::isinf;
|
||||
using std::isnan;
|
||||
#endif
|
||||
using std::isnormal;
|
||||
|
||||
extern "C" {
|
||||
|
||||
Reference in New Issue
Block a user