Commit 695bb2f3 authored by Victor Zverovich's avatar Victor Zverovich

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

parent 309a51c2
......@@ -177,7 +177,7 @@ inline int SignBit(double value) {
inline int IsInf(double x) {
using namespace std;
return isinf(x);
return ::isinf(x);
}
#else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment