Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions include/boost/container/detail/pair.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,6 @@ struct is_trivially_copy_assignable<boost::container::dtl::pair<A,B> >
boost::move_detail::is_trivially_copy_assignable<B>::value;
};

template<class A, class B>
struct is_trivially_copy_assignable<std::pair<A,B> >
: is_trivially_copy_assignable<boost::container::dtl::pair<A,B> >
{};

//
// is_trivially_move_assignable
//
Expand All @@ -582,12 +577,6 @@ struct is_trivially_move_assignable<boost::container::dtl::pair<A,B> >
boost::move_detail::is_trivially_move_assignable<B>::value;
};

template<class A, class B>
struct is_trivially_move_assignable<std::pair<A,B> >
: is_trivially_move_assignable<boost::container::dtl::pair<A,B> >
{};


//
// is_trivially_copy_constructible
//
Expand All @@ -602,11 +591,6 @@ struct is_trivially_copy_constructible<boost::container::dtl::pair<A,B> >
boost::move_detail::is_trivially_copy_constructible<B>::value;
};

template<class A, class B>
struct is_trivially_copy_constructible<std::pair<A,B> >
: is_trivially_copy_constructible<boost::container::dtl::pair<A,B> >
{};

//
// is_trivially_move_constructible
//
Expand All @@ -621,11 +605,6 @@ struct is_trivially_move_constructible<boost::container::dtl::pair<A,B> >
boost::move_detail::is_trivially_move_constructible<B>::value;
};

template<class A, class B>
struct is_trivially_move_constructible<std::pair<A,B> >
: is_trivially_move_constructible<boost::container::dtl::pair<A,B> >
{};

template<class T>
struct is_trivially_destructible;

Expand All @@ -636,11 +615,6 @@ struct is_trivially_destructible<boost::container::dtl::pair<A,B> >
boost::move_detail::is_trivially_destructible<B>::value;
};

template<class A, class B>
struct is_trivially_destructible<std::pair<A,B> >
: is_trivially_destructible<boost::container::dtl::pair<A,B> >
{};

} //namespace move_detail{

template<class T>
Expand All @@ -653,11 +627,6 @@ struct has_trivial_destructor_after_move<boost::container::dtl::pair<A,B> >
boost::has_trivial_destructor_after_move<B>::value;
};

template<class A, class B>
struct has_trivial_destructor_after_move<std::pair<A,B> >
: has_trivial_destructor_after_move<boost::container::dtl::pair<A,B> >
{};

} //namespace boost {

#include <boost/container/detail/config_end.hpp>
Expand Down