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)
inlinenoexcept

Definition at line 205 of file shared_ptr.h.

205 {
206 if (this != &other) {
207 this->swap(other);
208 other.reset();
209 }
210 return *this;
211 }
void reset() noexcept
Definition shared_ptr.h:223
void swap(shared_ptr &other) noexcept
Definition shared_ptr.h:246

References shared_ptr, and swap().

+ Here is the call graph for this function: