From 0a9386917f2ee49d77dc728de5922843053fb7d9 Mon Sep 17 00:00:00 2001 From: Yan Avlasov Date: Fri, 16 Oct 2020 22:24:21 -0400 Subject: [PATCH] Match parameter names in method's definition and declaration Signed-off-by: Yan Avlasov --- .../filters/common/ext_authz/ext_authz_http_impl.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/extensions/filters/common/ext_authz/ext_authz_http_impl.h b/source/extensions/filters/common/ext_authz/ext_authz_http_impl.h index 96b6d1d3173ac..218a01f6c1791 100644 --- a/source/extensions/filters/common/ext_authz/ext_authz_http_impl.h +++ b/source/extensions/filters/common/ext_authz/ext_authz_http_impl.h @@ -119,11 +119,10 @@ class ClientConfig { private: static MatcherSharedPtr - toRequestMatchers(const envoy::type::matcher::v3::ListStringMatcher& matcher); + toRequestMatchers(const envoy::type::matcher::v3::ListStringMatcher& list); + static MatcherSharedPtr toClientMatchers(const envoy::type::matcher::v3::ListStringMatcher& list); static MatcherSharedPtr - toClientMatchers(const envoy::type::matcher::v3::ListStringMatcher& matcher); - static MatcherSharedPtr - toUpstreamMatchers(const envoy::type::matcher::v3::ListStringMatcher& matcher); + toUpstreamMatchers(const envoy::type::matcher::v3::ListStringMatcher& list); const MatcherSharedPtr request_header_matchers_; const MatcherSharedPtr client_header_matchers_;