From bdce6c01fceed2371172fff700e2b7f2aa985f59 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Fri, 5 Sep 2025 16:30:25 +1000 Subject: [PATCH] Minor whitespace tidy-up --- include/boost/container/allocator.hpp | 2 +- include/boost/container/detail/pair.hpp | 4 ++-- include/boost/container/list.hpp | 2 +- include/boost/container/slist.hpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/container/allocator.hpp b/include/boost/container/allocator.hpp index 3d82f71..ddb96be 100644 --- a/include/boost/container/allocator.hpp +++ b/include/boost/container/allocator.hpp @@ -116,7 +116,7 @@ class allocator allocator& operator=(const allocator&); 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 )); diff --git a/include/boost/container/detail/pair.hpp b/include/boost/container/detail/pair.hpp index 0e84ffb..388a567 100644 --- a/include/boost/container/detail/pair.hpp +++ b/include/boost/container/detail/pair.hpp @@ -555,7 +555,7 @@ template struct is_trivially_copy_assignable > { - BOOST_STATIC_CONSTEXPR bool value = false ; + BOOST_STATIC_CONSTEXPR bool value = false; }; template @@ -593,7 +593,7 @@ template struct is_trivially_destructible > { BOOST_STATIC_CONSTEXPR bool value = boost::move_detail::is_trivially_destructible::value && - boost::move_detail::is_trivially_destructible::value ; + boost::move_detail::is_trivially_destructible::value; }; diff --git a/include/boost/container/list.hpp b/include/boost/container/list.hpp index 1061446..1346537 100644 --- a/include/boost/container/list.hpp +++ b/include/boost/container/list.hpp @@ -90,7 +90,7 @@ struct intrusive_list_type , dtl::bi::size_type >::type container_type; - typedef container_type type ; + typedef container_type type; }; } //namespace dtl { diff --git a/include/boost/container/slist.hpp b/include/boost/container/slist.hpp index 54ef5bd..70bac81 100644 --- a/include/boost/container/slist.hpp +++ b/include/boost/container/slist.hpp @@ -94,7 +94,7 @@ struct intrusive_slist_type , dtl::bi::size_type >::type container_type; - typedef container_type type ; + typedef container_type type; }; } //namespace dtl {