FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator=() [5/5]

template<typename T>
template<typename Y>
weak_ptr & fl::weak_ptr< T >::operator= ( weak_ptr< Y > && other)
inlinenoexcept

Definition at line 109 of file weak_ptr.h.

109 {
110 release();
111 ptr_ = other.ptr_;
113 other.ptr_ = nullptr;
114 other.control_block_ = nullptr;
115 return *this;
116 }
detail::ControlBlockBase * control_block_
Definition weak_ptr.h:13
void release()
Definition weak_ptr.h:183

References weak_ptr, control_block_, ptr_, and release().

+ Here is the call graph for this function: