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 257 of file ptr_impl.h.

257 {
258 if (!mWeakPtr) {
259 return other == nullptr;
260 }
261 return mWeakPtr->getReferent() == other;
262}
WeakReferent * mWeakPtr
Definition ptr.h:234

References mWeakPtr.