diff --git a/include/type_traits b/include/type_traits index 3c9e8dd90..13af4aea4 100644 --- a/include/type_traits +++ b/include/type_traits @@ -1350,12 +1350,6 @@ struct __is_convertible_test<_From, _To, decltype(_VSTD::__is_convertible_imp::__test_convert<_To>(_VSTD::declval<_From>()))> : public true_type {}; -#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES -template _Tp&& __source(); -#else -template typename remove_reference<_Tp>::type& __source(); -#endif - template ::value, bool _IsFunction = is_function<_Tp>::value, bool _IsVoid = is_void<_Tp>::value>