diff options
| author | gingerBill <bill@gingerbill.org> | 2019-05-04 13:02:15 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-05-04 13:02:15 +0100 |
| commit | a46a1f5f34d281ecede1b446fea7be8834496da5 (patch) | |
| tree | badacc472ce50c6ee0fda26fdee4e6b521af0455 /src/types.cpp | |
| parent | 40135cbc667b5991e00ff7d9fc2d638f94b9fb9b (diff) | |
Minor change to bit_field assignment rules
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/types.cpp b/src/types.cpp index 9960d50a0..33cd9c8fb 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -2953,7 +2953,6 @@ gbString write_type_to_string(gbString str, Type *type) { Entity *f = type->BitField.fields[i]; GB_ASSERT(f->kind == Entity_Variable); GB_ASSERT(f->type != nullptr && f->type->kind == Type_BitFieldValue); - str = gb_string_append_rune(str, '{'); if (i > 0) { str = gb_string_appendc(str, ", "); } |