diff options
| author | gingerBill <bill@gingerbill.org> | 2023-09-30 20:26:52 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-09-30 20:26:52 +0100 |
| commit | b9cc2606f201f45f88bffd1b2e62834b98cc5137 (patch) | |
| tree | 243450ddb0c3c4edf5b49088369acf6b01110e7d | |
| parent | 5023313c031d2d2e587dc1e30b4982e7784061c2 (diff) | |
Remove default value
| -rw-r--r-- | core/text/i18n/qt_linguist.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |