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

◆ operator=() [3/4]

template<typename T>
shared_ptr & fl::shared_ptr< T >::operator= ( shared_ptr< T > && other)
inline

Definition at line 264 of file shared_ptr.h.

264 {
265 if (this != &other) {
266 this->swap(other);
267 other.reset();
268 }
269 return *this;
270 }
void reset() FL_NOEXCEPT
Definition shared_ptr.h:286
void swap(shared_ptr &other) FL_NOEXCEPT
Definition shared_ptr.h:309