From 395edbfa24968b8406a0c157874d3cb473076df5 Mon Sep 17 00:00:00 2001 From: Yash Tibrewal Date: Sat, 27 Oct 2018 20:04:18 -0700 Subject: [PATCH] Replace size_t initialization from false to 0 --- include/grpcpp/impl/codegen/client_interceptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/grpcpp/impl/codegen/client_interceptor.h b/include/grpcpp/impl/codegen/client_interceptor.h index cd4926946ef..00113f04aaa 100644 --- a/include/grpcpp/impl/codegen/client_interceptor.h +++ b/include/grpcpp/impl/codegen/client_interceptor.h @@ -85,7 +85,7 @@ class ClientRpcInfo { grpc::ChannelInterface* channel_ = nullptr; std::vector> interceptors_; bool hijacked_ = false; - size_t hijacked_interceptor_ = false; + size_t hijacked_interceptor_ = 0; friend class internal::InterceptorBatchMethodsImpl; friend class grpc::ClientContext;