Searched refs:auto_ptr_ref (Results 1 – 5 of 5) sorted by relevance
249 struct auto_ptr_ref { }; struct252 auto_ptr(auto_ptr_ref);255 operator auto_ptr_ref();
28 std::auto_ptr_ref<A> apr = ap1; in test()
29 std::auto_ptr_ref<A> apr = ap1; in test()
211 template <class Y> struct auto_ptr_ref {}; // removed in C++17224 auto_ptr& operator=(auto_ptr_ref<X> r) throw();233 auto_ptr(auto_ptr_ref<X>) throw();234 template<class Y> operator auto_ptr_ref<Y>() throw();2001 struct auto_ptr_ref2022 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()2043 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}2044 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()2045 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}