From aae4fe6a368b1b609baf04b56883cfd56c4bf31c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Th=C3=B6ni?= Date: Wed, 14 May 2025 09:58:25 +0200 Subject: [PATCH] print: fix unused flag warning --- include/flxml/print.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/flxml/print.h b/include/flxml/print.h index 5bd1239..ba172bd 100644 --- a/include/flxml/print.h +++ b/include/flxml/print.h @@ -127,7 +127,7 @@ namespace flxml // Print attributes of the node template - inline OutIt print_attributes(OutIt out, const optional_ptr> node, int flags) + inline OutIt print_attributes(OutIt out, const optional_ptr> node, int) { for (auto attribute = node->first_attribute(); attribute; attribute = attribute->next_attribute()) {