Zig @call changes (#822)

First parameter is now a `std.builtin.CallModifier`.
This commit is contained in:
nullptrdevs
2022-12-14 17:58:38 -08:00
committed by GitHub
parent d43329a9ee
commit 3526f5fb84
6 changed files with 11 additions and 69 deletions

View File

@@ -251,7 +251,7 @@ fn callWriteNodeInlayHint(allocator: std.mem.Allocator, args: anytype) error{Out
// return await @asyncCall(child_frame, {}, writeNodeInlayHint, args);
// } else {
// TODO find a non recursive solution
return @call(.{}, writeNodeInlayHint, args);
return @call(.auto, writeNodeInlayHint, args);
// }
}