fix: Resolve compiler warnings across multiple modules

This commit is contained in:
Matej Kenda
2025-12-17 14:04:42 +01:00
parent b79b07c308
commit 7addcfbc81
80 changed files with 324 additions and 315 deletions

View File

@@ -266,7 +266,7 @@ void WebSocketImpl::skipHeader(int headerLength)
if (headerLength > 0)
{
char header[MAX_HEADER_LENGTH];
int n = receiveNBytes(header, headerLength);
[[maybe_unused]] int n = receiveNBytes(header, headerLength);
poco_assert_dbg (n == headerLength);
}
}