From b9cc2606f201f45f88bffd1b2e62834b98cc5137 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 30 Sep 2023 20:26:52 +0100 Subject: [PATCH] Remove default value --- core/text/i18n/qt_linguist.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/text/i18n/qt_linguist.odin b/core/text/i18n/qt_linguist.odin index 038f0426a..fa05a6dc1 100644 --- a/core/text/i18n/qt_linguist.odin +++ b/core/text/i18n/qt_linguist.odin @@ -30,7 +30,7 @@ TS_XML_Options := xml.Options{ parse_qt_linguist_from_bytes :: proc(data: []byte, options := DEFAULT_PARSE_OPTIONS, pluralizer: proc(int) -> int = nil, allocator := context.allocator) -> (translation: ^Translation, err: Error) { context.allocator = allocator - get_str :: proc(val: xml.Value, intern: ^strings.Intern = nil) -> (str: string, err: Error) { + get_str :: proc(val: xml.Value, intern: ^strings.Intern) -> (str: string, err: Error) { v, ok := val.(string) if ok { if intern != nil {