]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/tools/convert_from_string.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / math / tools / convert_from_string.hpp
index cce61ccbd9decf434a2505448b94af3a8811acaa..4a206c44f0b15a2ab4f7c5a7bd90bbaf2055b6d6 100644 (file)
@@ -23,17 +23,17 @@ namespace boost{ namespace math{ namespace tools{
    };
 
    template <class Real>
-   Real convert_from_string(const char* p, const mpl::false_&)
+   Real convert_from_string(const char* p, const boost::false_type&)
    {
 #ifdef BOOST_MATH_NO_LEXICAL_CAST
-      // This function should not compile, we don't have the necesary functionality to support it:
+      // This function should not compile, we don't have the necessary functionality to support it:
       BOOST_STATIC_ASSERT(sizeof(Real) == 0);
 #else
       return boost::lexical_cast<Real>(p);
 #endif
    }
    template <class Real>
-   BOOST_CONSTEXPR const char* convert_from_string(const char* p, const mpl::true_&) BOOST_NOEXCEPT
+   BOOST_CONSTEXPR const char* convert_from_string(const char* p, const boost::true_type&) BOOST_NOEXCEPT
    {
       return p;
    }