From 48cee18b2fc1475dc3ddd9ccb92d8bf9fcee58c5 Mon Sep 17 00:00:00 2001 From: yunjiaw26 <50971092+yunjiaw26@users.noreply.github.com> Date: Thu, 20 Jun 2019 21:21:48 -0700 Subject: [PATCH] Fix format error --- src/core/lib/iomgr/executor/mpmcqueue.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/lib/iomgr/executor/mpmcqueue.h b/src/core/lib/iomgr/executor/mpmcqueue.h index ae9a3b2826f..5970dba0c1d 100644 --- a/src/core/lib/iomgr/executor/mpmcqueue.h +++ b/src/core/lib/iomgr/executor/mpmcqueue.h @@ -119,11 +119,11 @@ class InfLenFIFOQueue : public MPMCQueueInterface { CondVar wait_nonempty_; // Wait on empty queue on get int num_waiters_; // Number of waiters - Node* queue_head_; // Head of the queue, remove position - Node* queue_tail_; // End of queue, insert position - Atomic count_{0}; // Number of elements in queue - Stats stats_; // Stats info - gpr_timespec busy_time; // Start time of busy queue + Node* queue_head_; // Head of the queue, remove position + Node* queue_tail_; // End of queue, insert position + Atomic count_{0}; // Number of elements in queue + Stats stats_; // Stats info + gpr_timespec busy_time; // Start time of busy queue }; } // namespace grpc_core