summaryrefslogtreecommitdiffstats
path: root/libcxx/include/unordered_map
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2015-05-06 12:11:22 +0000
committerMarshall Clow <mclow.lists@gmail.com>2015-05-06 12:11:22 +0000
commit27647994502024905c60a40aeb7e6b100e20fb59 (patch)
tree210afac679a23f1c89610ba570ecfbe5120d18d3 /libcxx/include/unordered_map
parentfc510b67fe1a251dcd2802b9429b3f51f75945ed (diff)
downloadbcm5719-llvm-27647994502024905c60a40aeb7e6b100e20fb59.tar.gz
bcm5719-llvm-27647994502024905c60a40aeb7e6b100e20fb59.zip
Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change.
llvm-svn: 236593
Diffstat (limited to 'libcxx/include/unordered_map')
-rw-r--r--libcxx/include/unordered_map4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map
index 3190ddf7fb2..51635def159 100644
--- a/libcxx/include/unordered_map
+++ b/libcxx/include/unordered_map
@@ -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();}
OpenPOWER on IntegriCloud