Remove default value

This commit is contained in:
gingerBill
2023-09-30 20:26:52 +01:00
parent 5023313c03
commit b9cc2606f2

View File

@@ -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 {