Commit f31e114f63

iacore <74560659+iacore@users.noreply.github.com>
2023-07-22 07:42:39
zig fmt: additionally auto-fix `@byteSwap` (#16462)
1 parent d962ad5
Changed files (1)
lib
std
lib/std/zig/render.zig
@@ -1398,6 +1398,7 @@ fn renderBuiltinCall(
         "@floatCast",
         "@intCast",
         "@ptrCast",
+
         "@intFromFloat",
         "@floatToInt",
         "@enumFromInt",
@@ -1406,7 +1407,9 @@ fn renderBuiltinCall(
         "@intToFloat",
         "@ptrFromInt",
         "@intToPtr",
+
         "@truncate",
+        "@byteSwap",
     }) |name| {
         if (mem.eql(u8, slice, name)) break true;
     } else false;