diff options
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index e596ab0aba..7f52dc23e9 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -1435,7 +1435,7 @@ pub const Fn = struct { /// All currently known errors that this error set contains. This includes direct additions /// via `return error.Foo;`, and possibly also errors that are returned from any dependent functions. /// When the inferred error set is fully resolved, this map contains all the errors that the function might return. - errors: std.StringHashMapUnmanaged(void) = .{}, + errors: ErrorSet.NameMap = .{}, /// Other inferred error sets which this inferred error set should include. inferred_error_sets: std.AutoHashMapUnmanaged(*InferredErrorSet, void) = .{}, |
