diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-10-08 15:16:13 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-10-08 15:16:13 +0100 |
| commit | 6424966b7ad6f85dc56d72cf623276f788a1a157 (patch) | |
| tree | 063d3063c885f331b71c51844f35a85d19af1f75 /src/check_expr.cpp | |
| parent | 4e42d7df4303470dec5b3c354a9469699f6abf8d (diff) | |
Union tag stored as an integer
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 7b1b3f271..43a6098b8 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -6472,12 +6472,6 @@ gbString write_expr_to_string(gbString str, AstNode *node) { str = gb_string_append_rune(str, '}'); case_end; - // case_ast_node(st, RawUnionType, node); - // str = gb_string_appendc(str, "raw_union "); - // str = gb_string_append_rune(str, '{'); - // str = write_struct_fields_to_string(str, st->fields); - // str = gb_string_append_rune(str, '}'); - // case_end; case_ast_node(st, UnionType, node); str = gb_string_appendc(str, "union "); |