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

◆ operator==() [4/4]

template<typename T>
bool fl::WeakPtr< T >::operator== ( T * other) const
inline

Definition at line 330 of file ptr.h.

330 {
331 if (!mWeakPtr) {
332 return other == nullptr;
333 }
334 return mWeakPtr->getReferent() == other;
335 }
Ptr< WeakReferent > mWeakPtr
Definition ptr.h:382

References mWeakPtr.