We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa47316 commit c7702d2Copy full SHA for c7702d2
include/boost/container/small_vector.hpp
@@ -415,9 +415,7 @@ class small_vector_base
415
{}
416
417
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
- }
+ { this->base_type::prot_shrink_to_fit_small(this->internal_storage(), small_capacity); }
421
422
using base_type::protected_set_size;
423
@@ -667,9 +665,7 @@ class small_vector
667
665
{ return this->base_type::prot_swap(other, static_capacity); }
668
666
669
inline void shrink_to_fit()
670
671
- this->base_type::prot_shrink_to_fit_small(this->internal_capacity());
672
+ { this->base_type::prot_shrink_to_fit_small(this->internal_capacity()); }
673
};
674
675
}}
0 commit comments