Add some const

pull/7018/head
vjpai 9 years ago
parent 34edfc3ad7
commit a12276932d
  1. 6
      include/grpc++/impl/codegen/call.h

@ -656,10 +656,10 @@ class Call GRPC_FINAL {
call_hook_->PerformOpsOnCall(ops, this);
}
grpc_call* call() { return call_; }
CompletionQueue* cq() { return cq_; }
grpc_call* call() const { return call_; }
CompletionQueue* cq() const { return cq_; }
int max_message_size() { return max_message_size_; }
int max_message_size() const { return max_message_size_; }
private:
CallHook* call_hook_;

Loading…
Cancel
Save