aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-05-04 13:02:15 +0100
committergingerBill <bill@gingerbill.org>2019-05-04 13:02:15 +0100
commita46a1f5f34d281ecede1b446fea7be8834496da5 (patch)
treebadacc472ce50c6ee0fda26fdee4e6b521af0455 /src/types.cpp
parent40135cbc667b5991e00ff7d9fc2d638f94b9fb9b (diff)
Minor change to bit_field assignment rules
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp1
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, ", ");
}