diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-05 07:34:08 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-05 07:34:08 +0000 |
| commit | d01a2eb2c251786c1174a2add962e9cae6facaf5 (patch) | |
| tree | c0b0acea6f04002280b95a730e10942cf7775c30 /libstdc++-v3/include/debug/unordered_map | |
| parent | 232c0d1d398195640be466c1c8192a1a4bbcde4c (diff) | |
| download | ppe42-gcc-d01a2eb2c251786c1174a2add962e9cae6facaf5.tar.gz ppe42-gcc-d01a2eb2c251786c1174a2add962e9cae6facaf5.zip | |
2010-08-05 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/move.h (forward): Update to N3092.
(identity): Remove (US 92 is NAD).
* include/debug/set.h: Fix move constructor to simply use move.
* include/debug/unordered_map: Likewise.
* include/debug/multiset.h: Likewise.
* include/debug/vector: Likewise.
* include/debug/unordered_set: Likewise.
* include/debug/deque: Likewise.
* include/debug/map.h: Likewise.
* include/debug/string: Likewise.
* include/debug/list: Likewise.
* include/debug/multimap.h: Likewise.
* include/profile/set.h: Likewise.
* include/profile/unordered_map: Likewise.
* include/profile/multiset.h: Likewise.
* include/profile/unordered_set: Likewise.
* include/profile/vector: Likewise.
* include/profile/deque: Likewise.
* include/profile/map.h: Likewise.
* include/profile/list: Likewise.
* include/profile/multimap.h: Likewise.
* include/ext/vstring.h: Likewise.
* include/bits/stl_list.h: Likewise.
* include/bits/stl_map.h: Likewise.
* include/bits/stl_set.h: Likewise.
* include/bits/forward_list.h: Likewise.
* include/bits/stl_multimap.h: Likewise.
* include/bits/unordered_map.h: Likewise.
* include/bits/stl_vector.h: Likewise.
* include/bits/stl_deque.h: Likewise.
* include/bits/stl_multiset.h: Likewise.
* include/bits/unordered_set.h: Likewise.
* include/bits/stl_bvector.h: Likewise.
* testsuite/20_util/identity/value.cc: Remove
* testsuite/20_util/identity/requirements/typedefs.cc: Likewise.
* testsuite/20_util/identity/requirements/explicit_instantiation.cc:
Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162898 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/debug/unordered_map')
| -rw-r--r-- | libstdc++-v3/include/debug/unordered_map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/debug/unordered_map b/libstdc++-v3/include/debug/unordered_map index e4c9fa213c5..805e42ee75e 100644 --- a/libstdc++-v3/include/debug/unordered_map +++ b/libstdc++-v3/include/debug/unordered_map @@ -93,7 +93,7 @@ namespace __debug : _Base(__x), _Safe_base() { } unordered_map(unordered_map&& __x) - : _Base(std::forward<unordered_map>(__x)), _Safe_base() { } + : _Base(std::move(__x)), _Safe_base() { } unordered_map(initializer_list<value_type> __l, size_type __n = 10, @@ -352,7 +352,7 @@ namespace __debug : _Base(__x), _Safe_base() { } unordered_multimap(unordered_multimap&& __x) - : _Base(std::forward<unordered_multimap>(__x)), _Safe_base() { } + : _Base(std::move(__x)), _Safe_base() { } unordered_multimap(initializer_list<value_type> __l, size_type __n = 10, |

