Fix pos of base macro

pull/19358/head
Yunjia Wang 6 years ago
parent befd236fa3
commit 87bd0a080a
  1. 4
      src/core/lib/iomgr/executor/mpmcqueue.h

@ -49,6 +49,8 @@ class MPMCQueueInterface {
// Returns number of elements in the queue currently
virtual int count() const GRPC_ABSTRACT;
GRPC_ABSTRACT_BASE_CLASS
};
class InfLenFIFOQueue : public MPMCQueueInterface {
@ -74,8 +76,6 @@ class InfLenFIFOQueue : public MPMCQueueInterface {
// quickly.
int count() const { return count_.Load(MemoryOrder::RELAXED); }
GRPC_ABSTRACT_BASE_CLASS
private:
// For Internal Use Only.
// Removes the oldest element from the queue and returns it. This routine

Loading…
Cancel
Save