store(ini): panic on invalid type

This commit is contained in:
RoBaertschi 2025-06-20 12:54:12 +02:00
parent f5e9ec0cde
commit fe44017128
No known key found for this signature in database

View File

@ -257,7 +257,7 @@ ini_parse_and_set_pointer_by_base_type :: proc(ptr: rawptr, str: string, type_in
return false return false
} }
} else { } else {
return false fmt.panicf("INI: Invalid type for INI Unmarshaler '%v'", type_info)
} }
} }