zig: update to zig-0.15.0-dev.703+597dd328e

This commit is contained in:
CJ van den Berg 2025-06-04 22:37:21 +02:00
parent 0e3806ab98
commit 6fb364d64b
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 6 additions and 3 deletions

View file

@ -1222,6 +1222,7 @@ pub const LoadFromFileError = error{
LockViolation,
ProcessNotFound,
Canceled,
PermissionDenied,
};
pub fn load_from_file(
@ -1327,6 +1328,8 @@ pub const StoreToFileError = error{
SystemResources,
Unexpected,
WouldBlock,
PermissionDenied,
MessageTooBig,
};
pub fn store_to_existing_file_const(self: *const Self, file_path: []const u8) StoreToFileError!void {