Add __uncvref type for use in later patches

llvm-svn: 258491
This commit is contained in:
Eric Fiselier 2016-01-22 06:25:47 +00:00
parent 674d238bcc
commit d033ad21d0

View File

@ -1084,6 +1084,13 @@ declval();
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
// __uncvref
template <class _Tp>
struct __uncvref {
typedef typename remove_cv<typename remove_reference<_Tp>::type>::type type;
};
struct __any
{
__any(...);