stage2: remove error number from error set map

This saves memory since it is already stored in module
as well as allowing for better threading.
Part 2 of what is outlined in #8079.
This commit is contained in:
jacob gw
2021-03-01 09:21:51 -05:00
committed by Andrew Kelley
parent 904f774563
commit 2ebeb0dbf3
3 changed files with 8 additions and 8 deletions

View File

@@ -2144,7 +2144,7 @@ pub const Value = extern union {
base: Payload = .{ .tag = base_tag },
data: struct {
/// TODO revisit this when we have the concept of the error tag type
fields: std.StringHashMapUnmanaged(u16),
fields: std.StringHashMapUnmanaged(void),
decl: *Module.Decl,
},
};