aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/dynamic_thread_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc++/dynamic_thread_pool.h')
-rw-r--r--include/grpc++/dynamic_thread_pool.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/grpc++/dynamic_thread_pool.h b/include/grpc++/dynamic_thread_pool.h
index f0cd35940f..a4d4885b51 100644
--- a/include/grpc++/dynamic_thread_pool.h
+++ b/include/grpc++/dynamic_thread_pool.h
@@ -55,11 +55,12 @@ class DynamicThreadPool GRPC_FINAL : public ThreadPoolInterface {
private:
class DynamicThread {
- public:
- DynamicThread(DynamicThreadPool *pool);
+ public:
+ DynamicThread(DynamicThreadPool* pool);
~DynamicThread();
- private:
- DynamicThreadPool *pool_;
+
+ private:
+ DynamicThreadPool* pool_;
std::unique_ptr<grpc::thread> thd_;
void ThreadFunc();
};