This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit c9771d7840f7026f6d023bb7a7a89b4cbb95e65b Author: Masakazu Kitajo <[email protected]> AuthorDate: Thu Jul 18 15:22:02 2024 -0600 Comment out an unused parameter in URLImpl::set_params (#11578) (cherry picked from commit f42d68f46e7988f90b086154ba780e07580ef8e9) --- src/proxy/hdrs/URL.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy/hdrs/URL.cc b/src/proxy/hdrs/URL.cc index e56ab796c2..29af18d602 100644 --- a/src/proxy/hdrs/URL.cc +++ b/src/proxy/hdrs/URL.cc @@ -549,7 +549,7 @@ URLImpl::set_path(HdrHeap *heap, const char *value, int length, bool copy_string // url_{params|query|fragment}_set() void -URLImpl::set_params(HdrHeap *heap, const char *value, int length, bool copy_string) +URLImpl::set_params(HdrHeap *heap, const char *value, int length, bool /* copy_string ATS_UNUSED */) { int path_len = this->m_len_path;
