summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2010-07-25 16:44:38 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2010-07-25 16:44:38 +0000
commit766cfb6fb4408f8a741b3308a862e39c4b24eb00 (patch)
treebb2e19bb0c2e46022cd77ad098983ad7f3fb4399 /libstdc++-v3/include
parent72d9718a7662ffe420155f65f42fcd4e924df016 (diff)
downloadgcc-766cfb6fb4408f8a741b3308a862e39c4b24eb00.tar.gz
2010-07-25 Jonathan Wakely <jwakely.gcc@gmail.com>
PR libstdc++/45060 * include/bits/hashtable.h (_Hashtable::_Hashtable(_Hashtable&&)): Reorder mem-initializers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162515 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/bits/hashtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/hashtable.h b/libstdc++-v3/include/bits/hashtable.h
index c7aceb19f8e..cbc67ba2001 100644
--- a/libstdc++-v3/include/bits/hashtable.h
+++ b/libstdc++-v3/include/bits/hashtable.h
@@ -651,10 +651,10 @@ namespace std
_H1, _H2, _Hash, __chc>(__ht),
__detail::_Map_base<_Key, _Value, _ExtractKey, __uk, _Hashtable>(__ht),
_M_node_allocator(__ht._M_node_allocator),
+ _M_buckets(__ht._M_buckets),
_M_bucket_count(__ht._M_bucket_count),
_M_element_count(__ht._M_element_count),
- _M_rehash_policy(__ht._M_rehash_policy),
- _M_buckets(__ht._M_buckets)
+ _M_rehash_policy(__ht._M_rehash_policy)
{
size_type __n_bkt = __ht._M_rehash_policy._M_next_bkt(0);
__ht._M_buckets = __ht._M_allocate_buckets(__n_bkt);