From b43aebd9d3c2e072ee2acc50d4381dcb0f01ec98 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 17 Jul 2026 18:09:04 -0700 Subject: type shortcuts for literals --- scope.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scope.h') diff --git a/scope.h b/scope.h index 1d3c8ac..19561e0 100644 --- a/scope.h +++ b/scope.h @@ -54,10 +54,12 @@ struct scope { unsigned long long bp_offset; }; +struct ast; + void scope_push(struct scope** p_scope); void scope_pop(struct scope** p_scope); void scope_destroy(struct scope* scope); -void scope_install_default_types(struct scope* scope); +void scope_install_default_types(struct ast* ast); bool scope_get_type( const struct scope* scope, const struct type_def** p_entry, -- cgit v1.2.3