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

◆ operator=() [4/5]

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

Definition at line 97 of file weak_ptr.h.

97 {
98 if (this != &other) {
99 release();
100 ptr_ = other.ptr_;
102 other.ptr_ = nullptr;
103 other.control_block_ = nullptr;
104 }
105 return *this;
106 }
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: