Home
last modified time | relevance | path

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

/external/openscreen/util/
Dweak_ptr.h105 WeakPtr(const WeakPtr<U>& other) : impl_(other.as_std_weak_ptr()) {} in WeakPtr()
109 : impl_(std::move(other).as_std_weak_ptr()) {} in WeakPtr()
113 impl_ = other.as_std_weak_ptr();
119 impl_ = std::move(other).as_std_weak_ptr();
143 const std::weak_ptr<T>& as_std_weak_ptr() const& { return impl_; } in as_std_weak_ptr() function
144 std::weak_ptr<T> as_std_weak_ptr() && { return std::move(impl_); } in as_std_weak_ptr() function