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 186 of file shared_ptr.h.

186 {
187 if (this != &other) {
188 reset();
189 ptr_ = other.ptr_;
191 acquire();
192 }
193 return *this;
194 }
void reset() noexcept
Definition shared_ptr.h:223
detail::ControlBlockBase * control_block_
Definition shared_ptr.h:109

References shared_ptr, acquire(), control_block_, ptr_, and reset().

+ Here is the call graph for this function: