This is an automated email from the ASF dual-hosted git repository.
jvanderzee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new d12073d916 Fix conditionally unused parameter in UnixNetVConnection
(#11527)
d12073d916 is described below
commit d12073d916368c3a9e60b15dca4bcb06fd8841d7
Author: Pavel Vazharov <[email protected]>
AuthorDate: Tue Jul 9 18:51:08 2024 +0300
Fix conditionally unused parameter in UnixNetVConnection (#11527)
---
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;