aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-05-23 12:04:19 +0100
committergingerBill <bill@gingerbill.org>2022-05-23 12:04:19 +0100
commit3ec70c5517062f3d35822253b2072df696b0c55f (patch)
tree12e5377283b627e246f77e19fed33220b06c0830 /src/parser.hpp
parentd9f293b2818b30ebe2d29180aa62c3ce432c4582 (diff)
Merge functionality of `#maybe` with the standard 'union' functionality
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 698ed7623..dc294b6ce 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -332,7 +332,7 @@ char const *inline_asm_dialect_strings[InlineAsmDialect_COUNT] = {
enum UnionTypeKind : u8 {
UnionType_Normal = 0,
- UnionType_maybe = 1,
+ UnionType_maybe = 1, // removed
UnionType_no_nil = 2,
UnionType_shared_nil = 3,
};