aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl/server_builder_option.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-06-10 12:25:32 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-06-10 12:25:32 -0700
commit15855f3e7fbf8407393e70dd3c92ee2b0a871430 (patch)
tree92ddc4ce919858b492a6b0bce6758e27e4b03ab5 /include/grpc++/impl/server_builder_option.h
parenteac07c3cc8bad2c704931186aa4e23851d30df56 (diff)
Switch server builder plugin API to something that will work with gcc4.4
Diffstat (limited to 'include/grpc++/impl/server_builder_option.h')
-rw-r--r--include/grpc++/impl/server_builder_option.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/impl/server_builder_option.h b/include/grpc++/impl/server_builder_option.h
index 2b7e89f5e5..f736cab0e4 100644
--- a/include/grpc++/impl/server_builder_option.h
+++ b/include/grpc++/impl/server_builder_option.h
@@ -50,7 +50,7 @@ class ServerBuilderOption {
virtual void UpdateArguments(ChannelArguments* args) = 0;
/// Alter the ServerBuilderPlugin map that will be added into ServerBuilder.
virtual void UpdatePlugins(
- std::map<grpc::string, std::unique_ptr<ServerBuilderPlugin> >*
+ std::vector<std::unique_ptr<ServerBuilderPlugin> >*
plugins) = 0;
};