aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/server.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-10-29 01:56:12 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-10-29 01:56:12 -0700
commitbfd1935afc34fc1cc1a3ddf357f62ad32aff249e (patch)
tree60cf9edb53c7bcbf44376c1492a879ee7dc006df /include/grpcpp/server.h
parent85ddf5c71351faae8d269339bbc8be638a3d52c1 (diff)
Add note on the experimental nature of the additional method in ServerInterface
Diffstat (limited to 'include/grpcpp/server.h')
-rw-r--r--include/grpcpp/server.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/grpcpp/server.h b/include/grpcpp/server.h
index 2b89ffd317..76a4e56f06 100644
--- a/include/grpcpp/server.h
+++ b/include/grpcpp/server.h
@@ -191,8 +191,7 @@ class Server : public ServerInterface, private GrpcLibraryCodegen {
grpc_server* server() override { return server_; };
private:
- const std::vector<
- std::unique_ptr<experimental::ServerInterceptorFactoryInterface>>*
+ std::vector<std::unique_ptr<experimental::ServerInterceptorFactoryInterface>>*
interceptor_creators() override {
return &interceptor_creators_;
}