Searched defs:min_pointer (Results 1 – 1 of 1) sorted by relevance
47 template <class T> class min_pointer; variable48 template <class T> class min_pointer<const T>; variable49 template <> class min_pointer<void>; variable50 template <> class min_pointer<const void>; variable59 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function61 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function67 template <class U> friend class min_pointer; variable76 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function83 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function89 template <class U> friend class min_pointer; variable[all …]