aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-10 17:09:55 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-04-16 09:29:17 -0700
commit53a38d4699451968ade05b539868b02edff7b0c9 (patch)
tree5b1920cdcce5fea4f9caf7a7252a3ad19d6d3416 /include
parentbd6c61860a4b930f8e59807af653b7c759f24091 (diff)
Make RpcMethod constructor take all args
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/impl/rpc_method.h2
1 files changed, 0 insertions, 2 deletions
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_; }