]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/container/test/polymorphic_allocator_test.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / container / test / polymorphic_allocator_test.cpp
index 449b706c2c56de7442ab0cc28a197d1753c12ca2..10899cac1e18c9e9a2fd78e435cf168f883b68e0 100644 (file)
@@ -63,7 +63,7 @@ void test_allocate()
    BOOST_TEST(d.do_allocate_return == &dummy);
    //It shall allocate 2*sizeof(int), alignment_of<int>
    BOOST_TEST(d.do_allocate_bytes == 2*sizeof(int));
-   BOOST_TEST(d.do_allocate_alignment == container_detail::alignment_of<int>::value);
+   BOOST_TEST(d.do_allocate_alignment == dtl::alignment_of<int>::value);
 }
 
 void test_deallocate()
@@ -77,7 +77,7 @@ void test_deallocate()
    //It shall deallocate 2*sizeof(int), alignment_of<int>
    BOOST_TEST(d.do_deallocate_p == &dummy);
    BOOST_TEST(d.do_deallocate_bytes == 3*sizeof(int));
-   BOOST_TEST(d.do_deallocate_alignment == container_detail::alignment_of<int>::value);
+   BOOST_TEST(d.do_deallocate_alignment == dtl::alignment_of<int>::value);
 }
 
 void test_construct()