diff options
Diffstat (limited to 'libs/container/test/emplace_test.hpp')
-rw-r--r-- | libs/container/test/emplace_test.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/container/test/emplace_test.hpp b/libs/container/test/emplace_test.hpp index 62824c5a2..50fe65642 100644 --- a/libs/container/test/emplace_test.hpp +++ b/libs/container/test/emplace_test.hpp @@ -16,8 +16,7 @@ #include <boost/container/detail/workaround.hpp> #include <boost/container/detail/mpl.hpp> #include <boost/move/utility_core.hpp> -#include <boost/container/detail/utilities.hpp> -#include <boost/aligned_storage.hpp> +#include <boost/container/detail/type_traits.hpp> namespace boost{ namespace container { @@ -147,7 +146,7 @@ bool test_expected_container(const Container &ec, const std::pair<EmplaceInt, Em static EmplaceInt expected [10]; typedef std::pair<EmplaceInt, EmplaceInt> EmplaceIntPair; -static boost::aligned_storage<sizeof(EmplaceIntPair)*10>::type pair_storage; +static boost::container::container_detail::aligned_storage<sizeof(EmplaceIntPair)*10>::type pair_storage; static EmplaceIntPair* initialize_emplace_int_pair() { |