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

◆ operator=() [1/4]

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

Definition at line 244 of file shared_ptr.h.

244 {
245 if (this != &other) {
246 reset();
247 mPtr = other.mPtr;
249 acquire();
250 }
251 return *this;
252 }
detail::ControlBlockBase * mControlBlock
Definition shared_ptr.h:158
void acquire() FL_NOEXCEPT
Definition shared_ptr.h:183
void reset() FL_NOEXCEPT
Definition shared_ptr.h:286