diff options
author | Himbeer <himbeer@disroot.org> | 2024-09-21 11:54:30 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-09-21 11:54:30 +0200 |
commit | 30a62e11d09f48d4a847ad6e2dbbd778e7be59a8 (patch) | |
tree | cf2208237cf746e88e5175da7a2f9c0476eb004e /include | |
parent | 16786fdbfa0f0e0569fb89b030d5f84508127a6f (diff) |
Order type kinds alphabetically
Diffstat (limited to 'include')
-rw-r--r-- | include/type.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/type.h b/include/type.h index edcbd77..78a3d18 100644 --- a/include/type.h +++ b/include/type.h @@ -45,17 +45,17 @@ struct cer_union { }; enum type_kind { + TYP_ARRAY, TYP_BOOL, - TYP_INT, + TYP_ENUM, + TYP_FALLIBLE, TYP_FLOAT, - TYP_ARRAY, + TYP_INT, + TYP_OPTIONAL, + TYP_POINTER, TYP_SLICE, TYP_STRUCT, - TYP_ENUM, TYP_UNION, - TYP_POINTER, - TYP_OPTIONAL, - TYP_FALLIBLE, }; union type_desc { |