aboutsummaryrefslogtreecommitdiff
path: root/core/unicode
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-07-14 12:19:47 +0100
committergingerBill <bill@gingerbill.org>2024-07-14 12:19:47 +0100
commit8642d719f0ece3625d535d47b41ff4d35072f47f (patch)
treeaec3708e44e3fe7085dea40b112aa4db08497f31 /core/unicode
parent891cf54b5c56bd31bcfdac14f0b72d489999bffc (diff)
Imply `#no_capture` to all variadic parameters
Diffstat (limited to 'core/unicode')
-rw-r--r--core/unicode/tools/generate_entity_table.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/tools/generate_entity_table.odin b/core/unicode/tools/generate_entity_table.odin
index 238a3e219..16baa1adf 100644
--- a/core/unicode/tools/generate_entity_table.odin
+++ b/core/unicode/tools/generate_entity_table.odin
@@ -12,7 +12,7 @@ import "core:fmt"
/*
Silent error handler for the parser.
*/
-Error_Handler :: proc(pos: xml.Pos, fmt: string, #no_capture args: ..any) {}
+Error_Handler :: proc(pos: xml.Pos, fmt: string, args: ..any) {}
OPTIONS :: xml.Options{ flags = { .Ignore_Unsupported, }, expected_doctype = "unicode", }