From 9d1ec2638d7f6580ca2dff786d45123257de11ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 5 Nov 2021 21:07:18 +0100 Subject: [PATCH] fix clang-tidy warning, different argument name for declaration and implementation --- lib/settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/settings.h b/lib/settings.h index e1c29b865..f36922b08 100644 --- a/lib/settings.h +++ b/lib/settings.h @@ -95,7 +95,7 @@ private: public: Settings(); - void loadCppcheckCfg(const std::string &exepath); + void loadCppcheckCfg(const std::string &exename); /** @brief addons, either filename of python/json file or json data */ std::list addons;