]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/python/test/pointee.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / python / test / pointee.cpp
index d962e79f56c3650fb36ede0823b01eb9c8656a63..2aa5dc3d882b34e94271ff4dcfc3b4252ec57c79 100644 (file)
@@ -3,7 +3,7 @@
 // accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
 #include <boost/python/pointee.hpp>
-#include <boost/type_traits/same_traits.hpp>
+#include <boost/python/detail/type_traits.hpp>
 #include <memory>
 #include <boost/shared_ptr.hpp>
 #include <boost/static_assert.hpp>
@@ -13,19 +13,19 @@ struct A;
 int main()
 {
     BOOST_STATIC_ASSERT(
-        (boost::is_same<
+        (boost::python::detail::is_same<
                 boost::python::pointee<std::auto_ptr<char**> >::type
                 , char**
          >::value));
     
     BOOST_STATIC_ASSERT(
-        (boost::is_same<
+        (boost::python::detail::is_same<
              boost::python::pointee<boost::shared_ptr<A> >::type
              , A>::value));
 
 #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
     BOOST_STATIC_ASSERT(
-        (boost::is_same<
+        (boost::python::detail::is_same<
                 boost::python::pointee<char*>::type
                 , char
          >::value));