File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ class allocator
116116 allocator& operator =(const allocator<T2, Version2, AllocationDisableMask2>&);
117117
118118 BOOST_STATIC_CONSTEXPR unsigned int ForbiddenMask =
119- BOOST_CONTAINER_ALLOCATE_NEW | BOOST_CONTAINER_EXPAND_BWD | BOOST_CONTAINER_EXPAND_FWD ;
119+ BOOST_CONTAINER_ALLOCATE_NEW | BOOST_CONTAINER_EXPAND_BWD | BOOST_CONTAINER_EXPAND_FWD;
120120
121121 // The mask can't disable all the allocation types
122122 BOOST_CONTAINER_STATIC_ASSERT (( (AllocationDisableMask & ForbiddenMask) != ForbiddenMask ));
Original file line number Diff line number Diff line change @@ -555,7 +555,7 @@ template<class A, class B>
555555struct is_trivially_copy_assignable
556556 <boost::container::dtl::pair<A,B> >
557557{
558- BOOST_STATIC_CONSTEXPR bool value = false ;
558+ BOOST_STATIC_CONSTEXPR bool value = false ;
559559};
560560
561561template <class T >
@@ -593,7 +593,7 @@ template<class A, class B>
593593struct is_trivially_destructible <boost::container::dtl::pair<A,B> >
594594{
595595 BOOST_STATIC_CONSTEXPR bool value = boost::move_detail::is_trivially_destructible<A>::value &&
596- boost::move_detail::is_trivially_destructible<B>::value ;
596+ boost::move_detail::is_trivially_destructible<B>::value;
597597};
598598
599599
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ struct intrusive_list_type
9090 , dtl::bi::size_type
9191 <typename allocator_traits_type::size_type>
9292 >::type container_type;
93- typedef container_type type ;
93+ typedef container_type type;
9494};
9595
9696} // namespace dtl {
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ struct intrusive_slist_type
9494 , dtl::bi::size_type
9595 <typename allocator_traits_type::size_type>
9696 >::type container_type;
97- typedef container_type type ;
97+ typedef container_type type;
9898};
9999
100100} // namespace dtl {
You can’t perform that action at this time.
0 commit comments