From 8fd4767410a9e53f20cfb9dbce335eb58a4c2770 Mon Sep 17 00:00:00 2001 From: Vijay Pai Date: Tue, 3 Dec 2019 20:19:55 -0800 Subject: [PATCH] Remove unused parameter names --- src/core/ext/filters/client_channel/http_proxy.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/ext/filters/client_channel/http_proxy.cc b/src/core/ext/filters/client_channel/http_proxy.cc index 6a2b122f68c..fdaf58ff804 100644 --- a/src/core/ext/filters/client_channel/http_proxy.cc +++ b/src/core/ext/filters/client_channel/http_proxy.cc @@ -187,10 +187,10 @@ class HttpProxyMapper : public ProxyMapperInterface { return false; } - bool MapAddress(const grpc_resolved_address& address, - const grpc_channel_args* args, - grpc_resolved_address** new_address, - grpc_channel_args** new_args) override { + bool MapAddress(const grpc_resolved_address& /*address*/, + const grpc_channel_args* /*args*/, + grpc_resolved_address** /*new_address*/, + grpc_channel_args** /*new_args*/) override { return false; } };