From c7702d20eb15579699a3b6a91bfdb166b1fb9fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 3 Jun 2024 00:12:56 +0200 Subject: [PATCH] Reformat small inline functions --- include/boost/container/small_vector.hpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/include/boost/container/small_vector.hpp b/include/boost/container/small_vector.hpp index e20a8fe..41dc15b 100644 --- a/include/boost/container/small_vector.hpp +++ b/include/boost/container/small_vector.hpp @@ -415,9 +415,7 @@ class small_vector_base {} void prot_shrink_to_fit_small(const size_type small_capacity) - { - this->base_type::prot_shrink_to_fit_small(this->internal_storage(), small_capacity); - } + { this->base_type::prot_shrink_to_fit_small(this->internal_storage(), small_capacity); } using base_type::protected_set_size; @@ -667,9 +665,7 @@ class small_vector { return this->base_type::prot_swap(other, static_capacity); } inline void shrink_to_fit() - { - this->base_type::prot_shrink_to_fit_small(this->internal_capacity()); - } + { this->base_type::prot_shrink_to_fit_small(this->internal_capacity()); } }; }}