From 5f4f0c3170941057b1243c78aae052004538888f Mon Sep 17 00:00:00 2001 From: Yang Gao Date: Mon, 9 Feb 2015 13:45:28 -0800 Subject: [PATCH] remove explicit --- include/grpc++/stream.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/grpc++/stream.h b/include/grpc++/stream.h index d0abd586ad1..fee70f4fdcf 100644 --- a/include/grpc++/stream.h +++ b/include/grpc++/stream.h @@ -85,9 +85,9 @@ class ClientReader final : public ClientStreamingInterface, public ReaderInterface { 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);