From bf0ef1b8eb8087ea9c9e8668f1dc87600b0f5dd9 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Mon, 30 Apr 2018 17:19:34 +0200 Subject: [PATCH] base: remove unused argument name in list_model.h Needed to use the utility with -Weffc++. --- repos/base/include/util/list_model.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/include/util/list_model.h b/repos/base/include/util/list_model.h index 7c18651cf4..8121d769d2 100644 --- a/repos/base/include/util/list_model.h +++ b/repos/base/include/util/list_model.h @@ -216,7 +216,7 @@ struct Genode::List_model::Update_policy * This method allows the policy to disregard certain XML node types from * building the data model. */ - static bool node_is_element(Xml_node node) { return true; } + static bool node_is_element(Xml_node) { return true; } }; #endif /* _INCLUDE__UTIL__LIST_MODEL_H_ */