From d3e2e48eccabdfbc1c2a616c50a4c090e30384dc Mon Sep 17 00:00:00 2001 From: Guantao Liu Date: Thu, 17 Oct 2019 13:45:49 -0700 Subject: [PATCH] Clang format. --- src/core/lib/iomgr/executor/threadpool.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/lib/iomgr/executor/threadpool.cc b/src/core/lib/iomgr/executor/threadpool.cc index 6a562d5256f..8c9fd18380e 100644 --- a/src/core/lib/iomgr/executor/threadpool.cc +++ b/src/core/lib/iomgr/executor/threadpool.cc @@ -58,8 +58,7 @@ void ThreadPool::SharedThreadPoolConstructor() { threads_ = static_cast( gpr_zalloc(num_threads_ * sizeof(ThreadPoolWorker*))); for (int i = 0; i < num_threads_; ++i) { - threads_[i] = - New(thd_name_, queue_, thread_options_, i); + threads_[i] = New(thd_name_, queue_, thread_options_, i); threads_[i]->Start(); } }