From 37ce034dc162ede929999b0239d295e2d8bfd263 Mon Sep 17 00:00:00 2001
From: yang-g <yangg@google.com>
Date: Wed, 12 Aug 2015 11:46:26 -0700
Subject: [PATCH] add const

---
 src/cpp/client/channel.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc
index 93536ae367..1c2eecf786 100644
--- a/src/cpp/client/channel.cc
+++ b/src/cpp/client/channel.cc
@@ -61,9 +61,9 @@ Channel::~Channel() { grpc_channel_destroy(c_channel_); }
 
 Call Channel::CreateCall(const RpcMethod& method, ClientContext* context,
                          CompletionQueue* cq) {
-  bool registered = method.channel_tag() && context->authority().empty();
+  const bool kRegistered = method.channel_tag() && context->authority().empty();
   grpc_call* c_call = NULL;
-  if (registered) {
+  if (kRegistered) {
     c_call = grpc_channel_create_registered_call(
         c_channel_, context->propagate_from_call_,
         context->propagation_options_.c_bitmask(), cq->cq(),
-- 
GitLab