////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2005-2013. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_CONTAINER_DETAIL_ALGORITHMS_HPP #define BOOST_CONTAINER_DETAIL_ALGORITHMS_HPP #if defined(_MSC_VER) # pragma once #endif #include #include #include #include #include #include #include #include #include namespace boost { namespace container { template struct is_value_init_construct_iterator { static const bool value = false; }; template struct is_value_init_construct_iterator > { static const bool value = true; }; template struct is_emplace_iterator { static const bool value = false; }; template struct is_emplace_iterator > { static const bool value = true; }; template inline void construct_in_place(A &a, T* dest, InpIt source) { boost::container::allocator_traits::construct(a, dest, *source); } //#endif template inline void construct_in_place(A &a, T *dest, value_init_construct_iterator) { boost::container::allocator_traits::construct(a, dest); } template inline void construct_in_place(A &a, T *dest, default_init_construct_iterator) { boost::container::allocator_traits::construct(a, dest, default_init); } template inline void construct_in_place(A &a, T *dest, emplace_iterator ei) { ei.construct_in_place(a, dest); } } //namespace container { } //namespace boost { #include #endif //#ifndef BOOST_CONTAINER_DETAIL_ALGORITHMS_HPP