diff --git a/include/boost/geometry/util/math.hpp b/include/boost/geometry/util/math.hpp index 205d8618b..d84b11f48 100644 --- a/include/boost/geometry/util/math.hpp +++ b/include/boost/geometry/util/math.hpp @@ -85,6 +85,9 @@ struct abs { static inline T apply(T const& value) { + using ::fabs; + using std::fabs; // for long double + return fabs(value); } };