aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl/rpc_service_method.h
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-04-16 14:04:20 -0700
committerGravatar Yang Gao <yangg@google.com>2015-04-16 14:04:20 -0700
commitb12dc6b5bc448d58bc726c7f36ae9eecc8e4741b (patch)
tree5cf6e58ee417f5bfb8c84ddbf160869e7e902551 /include/grpc++/impl/rpc_service_method.h
parentcd1c1dd7af2e2773770af864303ba27847df081a (diff)
parent277d3cff7e07c8cc480a58edc972337b93503030 (diff)
Merge pull request #1261 from ctiller/registered_calls
Registered calls
Diffstat (limited to 'include/grpc++/impl/rpc_service_method.h')
-rw-r--r--include/grpc++/impl/rpc_service_method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/impl/rpc_service_method.h b/include/grpc++/impl/rpc_service_method.h
index 097667827a..50204d2099 100644
--- a/include/grpc++/impl/rpc_service_method.h
+++ b/include/grpc++/impl/rpc_service_method.h
@@ -167,7 +167,7 @@ class RpcServiceMethod : public RpcMethod {
MethodHandler* handler,
grpc::protobuf::Message* request_prototype,
grpc::protobuf::Message* response_prototype)
- : RpcMethod(name, type),
+ : RpcMethod(name, type, nullptr),
handler_(handler),
request_prototype_(request_prototype),
response_prototype_(response_prototype) {}