mirror of
https://github.com/boostorg/container.git
synced 2026-01-19 04:02:17 +00:00
Minor whitespace tidy-up
This commit is contained in:
@@ -116,7 +116,7 @@ class allocator
|
||||
allocator& operator=(const allocator<T2, Version2, AllocationDisableMask2>&);
|
||||
|
||||
BOOST_STATIC_CONSTEXPR unsigned int ForbiddenMask =
|
||||
BOOST_CONTAINER_ALLOCATE_NEW | BOOST_CONTAINER_EXPAND_BWD | BOOST_CONTAINER_EXPAND_FWD ;
|
||||
BOOST_CONTAINER_ALLOCATE_NEW | BOOST_CONTAINER_EXPAND_BWD | BOOST_CONTAINER_EXPAND_FWD;
|
||||
|
||||
//The mask can't disable all the allocation types
|
||||
BOOST_CONTAINER_STATIC_ASSERT(( (AllocationDisableMask & ForbiddenMask) != ForbiddenMask ));
|
||||
|
||||
@@ -555,7 +555,7 @@ template<class A, class B>
|
||||
struct is_trivially_copy_assignable
|
||||
<boost::container::dtl::pair<A,B> >
|
||||
{
|
||||
BOOST_STATIC_CONSTEXPR bool value = false ;
|
||||
BOOST_STATIC_CONSTEXPR bool value = false;
|
||||
};
|
||||
|
||||
template<class T>
|
||||
@@ -593,7 +593,7 @@ template<class A, class B>
|
||||
struct is_trivially_destructible<boost::container::dtl::pair<A,B> >
|
||||
{
|
||||
BOOST_STATIC_CONSTEXPR bool value = boost::move_detail::is_trivially_destructible<A>::value &&
|
||||
boost::move_detail::is_trivially_destructible<B>::value ;
|
||||
boost::move_detail::is_trivially_destructible<B>::value;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -90,7 +90,7 @@ struct intrusive_list_type
|
||||
, dtl::bi::size_type
|
||||
<typename allocator_traits_type::size_type>
|
||||
>::type container_type;
|
||||
typedef container_type type ;
|
||||
typedef container_type type;
|
||||
};
|
||||
|
||||
} //namespace dtl {
|
||||
|
||||
@@ -94,7 +94,7 @@ struct intrusive_slist_type
|
||||
, dtl::bi::size_type
|
||||
<typename allocator_traits_type::size_type>
|
||||
>::type container_type;
|
||||
typedef container_type type ;
|
||||
typedef container_type type;
|
||||
};
|
||||
|
||||
} //namespace dtl {
|
||||
|
||||
Reference in New Issue
Block a user