From 0111b4afdccd45d24020c1bd857feab340f229a5 Mon Sep 17 00:00:00 2001 From: Rikard Falkeborn Date: Fri, 27 Sep 2019 08:19:45 +0200 Subject: [PATCH] Silence unused variable warning (#2223) --- lib/checkunusedfunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkunusedfunctions.h b/lib/checkunusedfunctions.h index 624702797..1816f6a44 100644 --- a/lib/checkunusedfunctions.h +++ b/lib/checkunusedfunctions.h @@ -78,7 +78,7 @@ public: private: - void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const OVERRIDE { + void getErrorMessages(ErrorLogger *errorLogger, const Settings * /*settings*/) const OVERRIDE { CheckUnusedFunctions::unusedFunctionError(errorLogger, emptyString, 0, "funcName"); }