| author | |
| committer | |
| log | eec53d67abb3a3d894de945f549994a16cb92474 |
| tree | 6634cf1996d5e9d406c20bb29aa16fc2fbdc6deb |
| parent | 1eb5aaa4b5bee902bed354ef6ebfbb643a624440 |
1 files changed, 1 insertions(+), 1 deletions(-)
src-self-hosted/link.zig+1-1| ... | ... | @@ -229,7 +229,7 @@ pub const File = struct { |
| 229 | 229 | return &c_file.base; |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | pub fn fail(self: *C, src: usize, comptime format: []const u8, args: anytype) anyerror { | |
| 232 | pub fn fail(self: *C, src: usize, comptime format: []const u8, args: anytype) error{AnalysisFail, OutOfMemory} { | |
| 233 | 233 | self.error_msg = try Module.ErrorMsg.create(self.base.allocator, src, format, args); |
| 234 | 234 | return error.AnalysisFail; |
| 235 | 235 | } |