Searched refs:auto_ptr_ref (Results 1 – 2 of 2) sorted by relevance
26 struct _LIBCPP_DEPRECATED_IN_CXX11 auto_ptr_ref struct47 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT argument68 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) _NOEXCEPT : __ptr_(__p.__ptr_) {} in auto_ptr()69 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() _NOEXCEPT70 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
225 template <class Y> struct auto_ptr_ref {}; // deprecated in C++11, removed in C++17238 auto_ptr& operator=(auto_ptr_ref<X> r) throw();247 auto_ptr(auto_ptr_ref<X>) throw();248 template<class Y> operator auto_ptr_ref<Y>() throw();