Clang format.

pull/20665/head
Guantao Liu 5 years ago
parent 0fd6fd9ae6
commit d3e2e48ecc
  1. 3
      src/core/lib/iomgr/executor/threadpool.cc

@ -58,8 +58,7 @@ void ThreadPool::SharedThreadPoolConstructor() {
threads_ = static_cast<ThreadPoolWorker**>(
gpr_zalloc(num_threads_ * sizeof(ThreadPoolWorker*)));
for (int i = 0; i < num_threads_; ++i) {
threads_[i] =
New<ThreadPoolWorker>(thd_name_, queue_, thread_options_, i);
threads_[i] = New<ThreadPoolWorker>(thd_name_, queue_, thread_options_, i);
threads_[i]->Start();
}
}

Loading…
Cancel
Save