Skip to content

Commit bdce6c0

Browse files
committed
Minor whitespace tidy-up
1 parent 7972bb2 commit bdce6c0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

include/boost/container/allocator.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 ));

include/boost/container/detail/pair.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ template<class A, class B>
555555
struct 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

561561
template<class T>
@@ -593,7 +593,7 @@ template<class A, class B>
593593
struct 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

include/boost/container/list.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

include/boost/container/slist.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)