diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-03 19:21:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-03 19:21:32 +0900 |
| commit | 5541c597cb68f76d1fc53e01b931eb870856843c (patch) | |
| tree | f7510dff0dd6ab8e9b67f85b3c8b067cfa4a3a9a /src/ast.h | |
| parent | cab2491d14c6452f4382ce111a25166ed6e997c9 (diff) | |
| download | ducc-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,6 +29,9 @@ typedef enum { TypeKind_ulong, TypeKind_llong, TypeKind_ullong, + TypeKind_float, + TypeKind_double, + TypeKind_ldouble, TypeKind_struct, TypeKind_union, TypeKind_enum, |
