Use namespace dtl instead of container_detail to avoid excessively long symbol names.

This commit is contained in:
Ion Gaztañaga
2017-11-07 00:51:46 +01:00
parent 61d965f1a0
commit fa2494631a
104 changed files with 1395 additions and 1395 deletions
+2 -2
View 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()