Skip to content
Snippets Groups Projects
Commit e14a102f authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fixed unused argument warning

parent 42415166
No related branches found
No related tags found
No related merge requests found
......@@ -248,6 +248,8 @@ namespace rapidxml
template<class OutIt, class Ch>
inline OutIt print_attributes(OutIt out, const xml_node<Ch>* node, int flags)
{
(void) flags; // Unused.
for (xml_attribute<Ch>* attribute = node->first_attribute(); attribute; attribute = attribute->next_attribute())
{
if (attribute->name() && attribute->value())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment