[libcxx] r236593 - Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change.
Marshall Clow
mclow.lists at gmail.com
Wed May 6 05:11:23 PDT 2015
Author: marshall
Date: Wed May 6 07:11:22 2015
New Revision: 236593
URL: http://llvm.org/viewvc/llvm-project?rev=236593&view=rev
Log:
Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change.
Modified:
libcxx/trunk/include/unordered_map
Modified: libcxx/trunk/include/unordered_map
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/unordered_map?rev=236593&r1=236592&r2=236593&view=diff
==============================================================================
--- libcxx/trunk/include/unordered_map (original)
+++ libcxx/trunk/include/unordered_map Wed May 6 07:11:22 2015
@@ -551,7 +551,7 @@ union __hash_value_type
_LIBCPP_INLINE_VISIBILITY
__hash_value_type(__hash_value_type&& __v)
- : __nc(std::move(__v.__nc)) {}
+ : __nc(_VSTD::move(__v.__nc)) {}
_LIBCPP_INLINE_VISIBILITY
__hash_value_type& operator=(const __hash_value_type& __v)
@@ -559,7 +559,7 @@ union __hash_value_type
_LIBCPP_INLINE_VISIBILITY
__hash_value_type& operator=(__hash_value_type&& __v)
- {__nc = std::move(__v.__nc); return *this;}
+ {__nc = _VSTD::move(__v.__nc); return *this;}
_LIBCPP_INLINE_VISIBILITY
~__hash_value_type() {__cc.~value_type();}
More information about the cfe-commits
mailing list