From acb75fa0dfc17692a8824841161bb508a23bab91 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Sep 2024 19:15:26 -0400 Subject: Enable unused parameter warnings These were fixed earlier (and the clang-tidy warning enabled), but the compiler flags were't strengthened. --- src/jalv.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/jalv.c b/src/jalv.c index 81b7dcc..faa002b 100644 --- a/src/jalv.c +++ b/src/jalv.c @@ -466,6 +466,10 @@ jalv_ui_instantiate(Jalv* jalv, const char* native_ui_type, void* parent) lilv_free(binary_path); lilv_free(bundle_path); +#else + (void)jalv; + (void)native_ui_type; + (void)parent; #endif } -- cgit v1.2.1