summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h4
1 files changed, 2 insertions, 2 deletions
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 {