From 6a169de321b131e73b86967a1a8564365217275a Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Sun, 26 Jul 2026 11:09:14 -0700 Subject: clean up types --- ast.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ast.h') diff --git a/ast.h b/ast.h index a51bfea..c41713d 100644 --- a/ast.h +++ b/ast.h @@ -11,11 +11,11 @@ struct type_ref_node { }; struct int_lit_node { - long long val; + integral_t val; }; struct float_lit_node { - double val; + floating_t val; }; struct char_lit_node { -- cgit v1.2.3