forked from boostorg/container
Use namespace dtl instead of container_detail to avoid excessively long symbol names.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user