Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change.

llvm-svn: 236593
This commit is contained in:
Marshall Clow 2015-05-06 12:11:22 +00:00
parent fc510b67fe
commit 2764799450
1 changed files with 2 additions and 2 deletions

View File

@ -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();}