diff --git a/format.h b/format.h index e26e3fe0..756afe53 100644 --- a/format.h +++ b/format.h @@ -177,7 +177,7 @@ inline int SignBit(double value) { inline int IsInf(double x) { using namespace std; - return isinf(x); + return ::isinf(x); } #else