diff options
| author | blob1807 <12388588+blob1807@users.noreply.github.com> | 2024-03-01 14:24:51 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-01 14:24:51 +1000 |
| commit | f14babe419bc8c13252cca770a1b244b2e14dd8b (patch) | |
| tree | dc1c90fb20d0bbb743d94276a00506202e61e095 /src/entity.cpp | |
| parent | a95cead8e7dfb747cc5afa58dc8f1a76966d035b (diff) | |
| parent | 3263e54144a13714b055307ab0d6ab597eacbddb (diff) | |
Merge branch 'odin-lang:master' into json-better-enum-support
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index e6c46d37e..916c2b2bd 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -43,6 +43,7 @@ enum EntityFlag : u64 { EntityFlag_NoAlias = 1ull<<9, EntityFlag_TypeField = 1ull<<10, EntityFlag_Value = 1ull<<11, + EntityFlag_BitFieldField = 1ull<<12, @@ -212,6 +213,7 @@ struct Entity { Ast *init_expr; // only used for some variables within procedure bodies i32 field_index; i32 field_group_index; + u8 bit_field_bit_size; ParameterValue param_value; |