Skip to content

Commit 814efb5

Browse files
committed
Remove redundant "value" in is_trivially_copy_assignable for std::pair
1 parent 9552828 commit 814efb5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

include/boost/container/detail/pair.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -566,10 +566,7 @@ struct is_trivially_copy_assignable<boost::container::dtl::pair<A,B> >
566566
template<class A, class B>
567567
struct is_trivially_copy_assignable<std::pair<A,B> >
568568
: is_trivially_copy_assignable<boost::container::dtl::pair<A,B> >
569-
{
570-
BOOST_STATIC_CONSTEXPR bool value = boost::move_detail::is_trivially_copy_assignable<A>::value &&
571-
boost::move_detail::is_trivially_copy_assignable<B>::value;
572-
};
569+
{};
573570

574571
//
575572
// is_trivially_move_assignable

0 commit comments

Comments
 (0)