Fix a compilation issue when math.h is included before format.h

This commit is contained in:
Victor Zverovich 2013-02-21 16:53:58 -08:00
parent 309a51c2ad
commit 695bb2f3d4

View File

@ -177,7 +177,7 @@ inline int SignBit(double value) {
inline int IsInf(double x) {
using namespace std;
return isinf(x);
return ::isinf(x);
}
#else