From 179b1f8cf2f4b9dc8290c6753bf7626f48a81321 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 22 Aug 2013 18:29:50 +0000 Subject: Zhihao Yuan noted that there were a few unneeded statements. Eliminated the unnecessary ones, and commented the ones that are there for non-obvious reasons such as to help things limp along in C++03 language mode. llvm-svn: 189039 --- libcxx/include/ext/hash_map | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/include/ext') diff --git a/libcxx/include/ext/hash_map b/libcxx/include/ext/hash_map index 3e474b02e7d..b57ea533bc3 100644 --- a/libcxx/include/ext/hash_map +++ b/libcxx/include/ext/hash_map @@ -684,7 +684,7 @@ hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(const key_type& __k) __h.get_deleter().__first_constructed = true; __node_traits::construct(__na, _VSTD::addressof(__h->__value_.second)); __h.get_deleter().__second_constructed = true; - return _VSTD::move(__h); + return _VSTD::move(__h); // explicitly moved for C++03 } template -- cgit v1.2.3