mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 01:44:36 +00:00
Replace many built-in procedures with user-level procedures
This commit is contained in:
@@ -919,6 +919,9 @@ bool is_type_untyped_undef(Type *t) {
|
||||
|
||||
bool is_type_valid_for_keys(Type *t) {
|
||||
t = core_type(t);
|
||||
if (t->kind == Type_Generic) {
|
||||
return true;
|
||||
}
|
||||
if (is_type_untyped(t)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user