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()); } }; }}