]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/algorithm/string/detail/classification.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / algorithm / string / detail / classification.hpp
index 704d9d20ff45aa691426baa95c748e3f5aed6b88..30a37c698eeff1223eb804513590f02a4b8d3fec 100644 (file)
 
 #include <boost/algorithm/string/config.hpp>
 #include <algorithm>
+#include <cstring>
 #include <functional>
 #include <locale>
 
 #include <boost/range/begin.hpp>
+#include <boost/range/distance.hpp>
 #include <boost/range/end.hpp>
 
 #include <boost/algorithm/string/predicate_facade.hpp>
@@ -45,7 +47,7 @@ namespace boost {
                     return std::use_facet< std::ctype<CharT> >(m_Locale).is( m_Type, Ch );
                 }
 
-                #if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x582) && !defined(_USE_OLD_RW_STL)
+                #if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x582) && !defined(_USE_OLD_RW_STL)
                     template<>
                     bool operator()( char const Ch ) const
                     {