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 c081af55478df8524359cca52a23403888ee8198 Author: Pavel Vazharov <[email protected]> AuthorDate: Tue Jul 9 18:51:08 2024 +0300 Fix conditionally unused parameter in UnixNetVConnection (#11527) (cherry picked from commit d12073d916368c3a9e60b15dca4bcb06fd8841d7) --- src/iocore/net/UnixNetVConnection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iocore/net/UnixNetVConnection.cc b/src/iocore/net/UnixNetVConnection.cc index 8520ff0ace..9d6d7c60f0 100644 --- a/src/iocore/net/UnixNetVConnection.cc +++ b/src/iocore/net/UnixNetVConnection.cc @@ -1511,7 +1511,7 @@ UnixNetVConnection::protocol_contains(std::string_view tag) const } int -UnixNetVConnection::set_tcp_congestion_control(int side) +UnixNetVConnection::set_tcp_congestion_control([[maybe_unused]] int side) { #ifdef TCP_CONGESTION std::string_view ccp;
