diff options
author | yang-g <yangg@google.com> | 2015-01-13 12:40:43 -0800 |
---|---|---|
committer | yang-g <yangg@google.com> | 2015-01-13 12:40:43 -0800 |
commit | dec1a71f91b1a65cf826f1f628fc6b6162728c5c (patch) | |
tree | 1167b34ea68911360ce32fca5f4147934856d524 /src/cpp/client/channel.cc | |
parent | 52d4389009dedec185a8c07670d043b2e173f8d9 (diff) | |
parent | 21b19a552cbd01fe5c154d81fbf470362740650f (diff) |
Merge pull request #14 from ctiller/format
clang-format codebase
Diffstat (limited to 'src/cpp/client/channel.cc')
-rw-r--r-- | src/cpp/client/channel.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc index bcda4ed40c..ddda8c22d6 100644 --- a/src/cpp/client/channel.cc +++ b/src/cpp/client/channel.cc @@ -172,10 +172,10 @@ Status Channel::StartBlockingRpc(const RpcMethod& method, return status; } -StreamContextInterface* Channel::CreateStream(const RpcMethod& method, - ClientContext* context, - const google::protobuf::Message* request, - google::protobuf::Message* result) { +StreamContextInterface* Channel::CreateStream( + const RpcMethod& method, ClientContext* context, + const google::protobuf::Message* request, + google::protobuf::Message* result) { grpc_call* call = grpc_channel_create_call( c_channel_, method.name(), target_.c_str(), context->RawDeadline()); context->set_call(call); |