From: Marshall Clow Date: Wed, 6 May 2015 12:11:22 +0000 (+0000) Subject: Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality... X-Git-Tag: llvmorg-3.7.0-rc1~5292 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27647994502024905c60a40aeb7e6b100e20fb59;p=platform%2Fupstream%2Fllvm.git Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change. llvm-svn: 236593 --- diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map index 3190ddf..51635de 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();}