[libcxx-commits] [libcxx] ac42f76 - [libc++] s/_VSTD::_IsSame/_IsSame/. NFCI.

Arthur O'Dwyer via libcxx-commits libcxx-commits at lists.llvm.org
Thu Aug 5 20:30:55 PDT 2021


Author: Arthur O'Dwyer
Date: 2021-08-05T23:29:53-04:00
New Revision: ac42f7609027e96fec94d35db8a638d6a583e8f8

URL: https://github.com/llvm/llvm-project/commit/ac42f7609027e96fec94d35db8a638d6a583e8f8
DIFF: https://github.com/llvm/llvm-project/commit/ac42f7609027e96fec94d35db8a638d6a583e8f8.diff

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

Added: 
    

Modified: 
    libcxx/include/concepts

Removed: 
    


################################################################################
diff  --git a/libcxx/include/concepts b/libcxx/include/concepts
index 3dec9b5279019..99b340f98cec1 100644
--- a/libcxx/include/concepts
+++ b/libcxx/include/concepts
@@ -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>;


        


More information about the libcxx-commits mailing list