aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-10-27 20:04:18 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-10-27 20:14:06 -0700
commit395edbfa24968b8406a0c157874d3cb473076df5 (patch)
tree2d0f5e04a094fb67f03e25a5464fd57356e4241f
parentd21a175b281e58819663b798523883fffd3d5ccb (diff)
Replace size_t initialization from false to 0
-rw-r--r--include/grpcpp/impl/codegen/client_interceptor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpcpp/impl/codegen/client_interceptor.h b/include/grpcpp/impl/codegen/client_interceptor.h
index cd4926946e..00113f04aa 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<std::unique_ptr<experimental::Interceptor>> interceptors_;
bool hijacked_ = false;
- size_t hijacked_interceptor_ = false;
+ size_t hijacked_interceptor_ = 0;
friend class internal::InterceptorBatchMethodsImpl;
friend class grpc::ClientContext;