base: remove unused argument name in list_model.h

Needed to use the utility with -Weffc++.
This commit is contained in:
Norman Feske 2018-04-30 17:19:34 +02:00 committed by Christian Helmuth
parent de9d1afa99
commit bf0ef1b8eb

View File

@ -216,7 +216,7 @@ struct Genode::List_model<ELEM>::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_ */