From 3c7941b24b521e3e5a28077c7136ac89f3e5db39 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 26 Nov 2023 08:13:56 +0100 Subject: [PATCH] Instance: work around -Wunused-parameter --- src/Instance.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Instance.cxx b/src/Instance.cxx index 8644c067d..1f6a424a3 100644 --- a/src/Instance.cxx +++ b/src/Instance.cxx @@ -211,6 +211,8 @@ Instance::OnPlaylistDeleted(const char *name) const noexcept } catch (...) { } } +#else + (void)name; #endif }