diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-08 11:07:24 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-08 11:07:24 +0000 |
commit | b9f2ba1ee70c5d01eba0bdfcac78cbae4c33abaa (patch) | |
tree | 13e6b3a72d25efb2390fe71ac59d916d84cffcca /libstdc++-v3/include/bits/stl_bvector.h | |
parent | 934574417663b03dd7329cb3a8d00079ccf73985 (diff) | |
download | ppe42-gcc-b9f2ba1ee70c5d01eba0bdfcac78cbae4c33abaa.tar.gz ppe42-gcc-b9f2ba1ee70c5d01eba0bdfcac78cbae4c33abaa.zip |
2011-06-08 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/allocator.h (__shrink_to_fit): Simplify.
* include/bits/stl_vector.h (vector<>::shrink_to_fit): Adjust.
* include/bits/stl_deque.h: Likewise.
* include/bits/stl_bvector.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174802 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/stl_bvector.h')
-rw-r--r-- | libstdc++-v3/include/bits/stl_bvector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/stl_bvector.h b/libstdc++-v3/include/bits/stl_bvector.h index edf662987cb..30e7b2d9675 100644 --- a/libstdc++-v3/include/bits/stl_bvector.h +++ b/libstdc++-v3/include/bits/stl_bvector.h @@ -844,7 +844,7 @@ template<typename _Alloc> #ifdef __GXX_EXPERIMENTAL_CXX0X__ void shrink_to_fit() - { std::__shrink_to_fit<vector>::_S_do_it(*this); } + { std::__shrink_to_fit(*this); } #endif void |