zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 470d0dd9c61571669a41c2e25f9eca66054be784 (tree)
parent c4df980ac2678b45dbe6fffbc8d3d96cb28b40ea
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 14 Jan 2026 20:54:10 -0800

link: add some errors to the Dwarf.UpdateError mega error set

Diffstat:
Msrc/link/Dwarf.zig | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/link/Dwarf.zig b/src/link/Dwarf.zig @@ -49,6 +49,14 @@ pub const UpdateError = error{ Underflow, UnexpectedEndOfFile, NonResizable, + /// TODO why is this in the error set? + Timeout, + /// TODO why is this in the error set? + ConnectionResetByPeer, + /// TODO why is this in the error set? + SocketUnconnected, + /// TODO why is this in the error set? + NotOpenForWriting, } || codegen.GenerateSymbolError || Io.File.OpenError ||