Commit ac42f760 authored by Arthur O'Dwyer's avatar Arthur O'Dwyer
Browse files

[libc++] s/_VSTD::_IsSame/_IsSame/. NFCI.

parent 6f84d94b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
// [concept.same]

template<class _Tp, class _Up>
concept __same_as_impl = _VSTD::_IsSame<_Tp, _Up>::value;
concept __same_as_impl = _IsSame<_Tp, _Up>::value;

template<class _Tp, class _Up>
concept same_as = __same_as_impl<_Tp, _Up> && __same_as_impl<_Up, _Tp>;