From 53a38d4699451968ade05b539868b02edff7b0c9 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Fri, 10 Apr 2015 17:09:55 -0700 Subject: Make RpcMethod constructor take all args --- include/grpc++/impl/rpc_method.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include') diff --git a/include/grpc++/impl/rpc_method.h b/include/grpc++/impl/rpc_method.h index e8909ac184..1346e0af06 100644 --- a/include/grpc++/impl/rpc_method.h +++ b/include/grpc++/impl/rpc_method.h @@ -45,8 +45,6 @@ class RpcMethod { BIDI_STREAMING }; - explicit RpcMethod(const char* name) - : name_(name), method_type_(NORMAL_RPC) {} RpcMethod(const char* name, RpcType type) : name_(name), method_type_(type) {} const char* name() const { return name_; } -- cgit v1.2.3