Merge branch 'master' into map-dev

This commit is contained in:
gingerBill
2022-11-11 15:54:33 +00:00
4 changed files with 36 additions and 26 deletions
+3
View File
@@ -1260,6 +1260,9 @@ bool is_type_typed(Type *t) {
}
bool is_type_untyped(Type *t) {
t = base_type(t);
if (t == nullptr) {
return false;
}
if (t->kind == Type_Basic) {
return (t->Basic.flags & BasicFlag_Untyped) != 0;
}