fix: remove unused syncCounts variable in Warden handler

Eliminates the -Wunused-variable warning for the syncCounts array
that was declared but never populated in the synchronous Warden
check response path.
This commit is contained in:
Kelsi 2026-03-17 11:37:49 -07:00
parent ef5532cf15
commit c017c61d2c

View file

@ -10235,8 +10235,6 @@ void GameHandler::handleWardenData(network::Packet& packet) {
// Log synchronous round summary at WARNING level for diagnostics
{
int syncCounts[10] = {};
// Re-count (we don't have per-check counters in sync path yet)
LOG_WARNING("Warden: (sync) Parsed ", checkCount, " checks, resultSize=", resultData.size());
std::string fullHex;
for (size_t bi = 0; bi < resultData.size(); bi++) {