diff options
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -549,6 +549,19 @@ void fix_closures(struct ast *root) } } +static bool special_auto_very_bad(struct type *a, struct type *b) +{ + /** @todo massive hack, accept 'auto' as a placeholder and match it + * against anything, will need to be fixed eventually */ + if (a->k == TYPE_ID && strcmp(a->id, "auto") == 0) + return true; + + if (b->k == TYPE_ID && strcmp(b->id, "auto") == 0) + return true; + + return false; +} + bool types_match(struct type *a, struct type *b) { if (!a && !b) @@ -560,6 +573,9 @@ bool types_match(struct type *a, struct type *b) if (!a && b) return false; + if (special_auto_very_bad(a, b)) + return true; + if (a->k != b->k) return false; |