aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/server
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-11-01 17:20:42 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-11-01 17:20:42 -0700
commit0109d16ac0158b6ab60a8ea5c94707c639736414 (patch)
tree3c4941447eb099a183ff12dcbf6748e324b4c939 /src/cpp/server
parent320ed13d3e6c568d3db6a39b85ebbc080f7ee083 (diff)
clang-format
Diffstat (limited to 'src/cpp/server')
-rw-r--r--src/cpp/server/dynamic_thread_pool.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/server/dynamic_thread_pool.cc b/src/cpp/server/dynamic_thread_pool.cc
index 95a819d00c..1fdc2edb25 100644
--- a/src/cpp/server/dynamic_thread_pool.cc
+++ b/src/cpp/server/dynamic_thread_pool.cc
@@ -40,7 +40,7 @@ namespace grpc {
DynamicThreadPool::DynamicThread::DynamicThread(DynamicThreadPool* pool)
: pool_(pool),
thd_(new std::thread(&DynamicThreadPool::DynamicThread::ThreadFunc,
- this)) {}
+ this)) {}
DynamicThreadPool::DynamicThread::~DynamicThread() {
thd_->join();
thd_.reset();