diff options
Diffstat (limited to 'include/type.h')
-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 { |