Skip to content

Commit c7702d2

Browse files
committed
Reformat small inline functions
1 parent aa47316 commit c7702d2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

include/boost/container/small_vector.hpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -415,9 +415,7 @@ class small_vector_base
415415
{}
416416

417417
void prot_shrink_to_fit_small(const size_type small_capacity)
418-
{
419-
this->base_type::prot_shrink_to_fit_small(this->internal_storage(), small_capacity);
420-
}
418+
{ this->base_type::prot_shrink_to_fit_small(this->internal_storage(), small_capacity); }
421419

422420
using base_type::protected_set_size;
423421

@@ -667,9 +665,7 @@ class small_vector
667665
{ return this->base_type::prot_swap(other, static_capacity); }
668666

669667
inline void shrink_to_fit()
670-
{
671-
this->base_type::prot_shrink_to_fit_small(this->internal_capacity());
672-
}
668+
{ this->base_type::prot_shrink_to_fit_small(this->internal_capacity()); }
673669
};
674670

675671
}}

0 commit comments

Comments
 (0)