Home
last modified time | relevance | path

Searched refs:auto_ptr_ref (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Dauto_ptr.h26 struct _LIBCPP_DEPRECATED_IN_CXX11 auto_ptr_ref struct
47 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT argument
68 _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>() _NOEXCEPT
70 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dmemory225 template <class Y> struct auto_ptr_ref {}; // deprecated in C++11, removed in C++17
238 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();