zig fmt: apply new cast builtin order

This commit is contained in:
Justus Klausecker
2025-08-03 14:53:52 +02:00
parent 81219493f8
commit 7c35070b90
29 changed files with 45 additions and 45 deletions

View File

@@ -6,7 +6,7 @@ export fn b() void {
_ = @constCast(@volatileCast(123));
}
export fn c() void {
const x: ?*f32 = @constCast(@ptrCast(@addrSpaceCast(@volatileCast(p))));
const x: ?*f32 = @ptrCast(@addrSpaceCast(@constCast(@volatileCast(p))));
_ = x;
}