Merging r244462:

------------------------------------------------------------------------
r244462 | joerg | 2015-08-10 09:58:04 -0700 (Mon, 10 Aug 2015) | 2 lines

Protect template argument from user interference.

------------------------------------------------------------------------

llvm-svn: 244553
This commit is contained in:
Hans Wennborg
2015-08-11 00:55:30 +00:00
parent f750e29ff7
commit 3c968003ad

View File

@@ -219,8 +219,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD
template <class>
struct __void_t { typedef void type; };
template <class T>
struct __identity { typedef T type; };
template <class _Tp>
struct __identity { typedef _Tp type; };
template <class _Tp, bool>
struct _LIBCPP_TYPE_VIS_ONLY __dependent_type : public _Tp {};