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 345 of file ptr.h.

345 {
346 if (!mWeakPtr) {
347 return other == nullptr;
348 }
349 return mWeakPtr->getReferent() == other;
350 }
Ptr< WeakReferent > mWeakPtr
Definition ptr.h:397

References mWeakPtr.