Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / histogram / detail / limits.hpp
index 23b8a6f..532a508 100644 (file)
@@ -30,7 +30,7 @@ constexpr float lowest() {
 
 template <typename T>
 constexpr T highest() {
-  return std::numeric_limits<T>::max();
+  return (std::numeric_limits<T>::max)();
 }
 
 template <>