Delete PointerQueue::dequeuePtrFromISR, unused since commit db766f1 (#99). (#10090)

This commit is contained in:
Catalin Patulea
2026-04-21 09:57:00 -05:00
committed by Ben Meadors
co-authored by Ben Meadors
parent 5d9a2564e4
commit e1f5043489
-10
View File
@@ -17,14 +17,4 @@ template <class T> class PointerQueue : public TypedQueue<T *>
return this->dequeue(&p, maxWait) ? p : nullptr;
}
#ifdef HAS_FREE_RTOS
// returns a ptr or null if the queue was empty
T *dequeuePtrFromISR(BaseType_t *higherPriWoken)
{
T *p;
return this->dequeueFromISR(&p, higherPriWoken) ? p : nullptr;
}
#endif
};