Disable -Wno-unused-parameter -Wno-unused-function. (#2358)

* unused parameters and functions pollute the code and decrease readability

Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
Toni 2024-04-03 14:10:21 +02:00 committed by GitHub
parent b5e8bc2214
commit 41eef9246c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
63 changed files with 568 additions and 605 deletions

View file

@ -7,6 +7,7 @@
#include "fuzzer/FuzzedDataProvider.h"
extern "C" void cleanup_func(ndpi_str_hash *h) {
(void)h;
/* Nothing to do */
return;
}