aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ast.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-03 19:21:32 +0900
committernsfisis <nsfisis@gmail.com>2025-09-03 19:21:32 +0900
commit5541c597cb68f76d1fc53e01b931eb870856843c (patch)
treef7510dff0dd6ab8e9b67f85b3c8b067cfa4a3a9a /src/ast.h
parentcab2491d14c6452f4382ce111a25166ed6e997c9 (diff)
downloadducc-5541c597cb68f76d1fc53e01b931eb870856843c.tar.gz
ducc-5541c597cb68f76d1fc53e01b931eb870856843c.tar.zst
ducc-5541c597cb68f76d1fc53e01b931eb870856843c.zip
feat: partially support floating point number types (parsing only)
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ast.h b/src/ast.h
index 05c20e2..00b0171 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -29,6 +29,9 @@ typedef enum {
TypeKind_ulong,
TypeKind_llong,
TypeKind_ullong,
+ TypeKind_float,
+ TypeKind_double,
+ TypeKind_ldouble,
TypeKind_struct,
TypeKind_union,
TypeKind_enum,