aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/server.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-11-15 16:49:43 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2018-11-15 16:49:43 -0800
commit626f1c9d537de45c6604a1dc7b103933073c4f00 (patch)
tree396f1e34d6ec9816987cf74532f945667b6f90a2 /include/grpcpp/server.h
parent9cfacc48ee2e9f8db083d578c84881551734b1f0 (diff)
Remove the std::unique_ptr, instead use move semantics everywhere
Diffstat (limited to 'include/grpcpp/server.h')
-rw-r--r--include/grpcpp/server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpcpp/server.h b/include/grpcpp/server.h
index a14a4da578..cdcac186cb 100644
--- a/include/grpcpp/server.h
+++ b/include/grpcpp/server.h
@@ -111,8 +111,8 @@ class Server : public ServerInterface, private GrpcLibraryCodegen {
/// interceptors
std::shared_ptr<Channel> InProcessChannelWithInterceptors(
const ChannelArguments& args,
- std::unique_ptr<std::vector<
- std::unique_ptr<experimental::ClientInterceptorFactoryInterface>>>
+ std::vector<
+ std::unique_ptr<experimental::ClientInterceptorFactoryInterface>>
interceptor_creators);
private: