Minor whitespace tidy-up

This commit is contained in:
Nigel Stewart
2025-09-05 16:30:25 +10:00
parent 7972bb2c97
commit bdce6c01fc
4 changed files with 5 additions and 5 deletions

View File

@@ -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 ));

View File

@@ -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;
};

View File

@@ -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 {

View File

@@ -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 {