aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-09 13:48:28 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-09 13:48:28 -0800
commit20781ccf5414cf4c2ef05a10359b5b9e10970843 (patch)
tree1057c3138ee81c5ac09cbb0bb90dd59af8826d26 /include/grpc++
parentb00b68716a42a6871a0ad28bea7bcb84e019eed3 (diff)
parent5f4f0c3170941057b1243c78aae052004538888f (diff)
Merge pull request #1 from yang-g/c++api
C++api
Diffstat (limited to 'include/grpc++')
-rw-r--r--include/grpc++/stream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/grpc++/stream.h b/include/grpc++/stream.h
index d0abd586ad..fee70f4fdc 100644
--- a/include/grpc++/stream.h
+++ b/include/grpc++/stream.h
@@ -85,9 +85,9 @@ class ClientReader final : public ClientStreamingInterface,
public ReaderInterface<R> {
public:
// Blocking create a stream and write the first request out.
- explicit ClientReader(ChannelInterface *channel, const RpcMethod &method,
- ClientContext *context,
- const google::protobuf::Message &request)
+ ClientReader(ChannelInterface *channel, const RpcMethod &method,
+ ClientContext *context,
+ const google::protobuf::Message &request)
: call_(channel->CreateCall(method, context, &cq_)) {
CallOpBuffer buf;
buf.AddSendMessage(request);