]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/geometry/test/expectation_limits.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / geometry / test / expectation_limits.hpp
index eda85d706bd944b2423ddb1234e84c3368a9b3cd..ba7585803d0b7a0b523be79be995918d3f85038b 100644 (file)
@@ -2,6 +2,10 @@
 
 // Copyright (c) 2020 Barend Gehrels, Amsterdam, the Netherlands.
 
+// This file was modified by Oracle on 2021.
+// Modifications copyright (c) 2021, Oracle and/or its affiliates.
+// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
+
 // Use, modification and distribution is subject to the Boost Software License,
 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -40,7 +44,9 @@ struct expectation_limits
     template<typename T>
     bool contains_logarithmic(const T& value, double tolerance) const
     {
-      return abs(log(value) - std::log(m_lower_limit)) < tolerance;
+        using std::abs;
+        using std::log;
+        return abs(log(value) - std::log(m_lower_limit)) < tolerance;
     }
 
     template<typename T>