From 08b2d491bcd8c79c68495267cc71967661caea1e Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Mon, 12 Dec 2022 15:32:37 +0200 Subject: update usages of `@call` --- src/ThreadPool.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ThreadPool.zig') diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig index 980bacf94f..fde5ed27db 100644 --- a/src/ThreadPool.zig +++ b/src/ThreadPool.zig @@ -71,7 +71,7 @@ fn join(pool: *ThreadPool, spawned: usize) void { pub fn spawn(pool: *ThreadPool, comptime func: anytype, args: anytype) !void { if (builtin.single_threaded) { - @call(.{}, func, args); + @call(.auto, func, args); return; } @@ -84,7 +84,7 @@ pub fn spawn(pool: *ThreadPool, comptime func: anytype, args: anytype) !void { fn runFn(runnable: *Runnable) void { const run_node = @fieldParentPtr(RunQueue.Node, "data", runnable); const closure = @fieldParentPtr(@This(), "run_node", run_node); - @call(.{}, func, closure.arguments); + @call(.auto, func, closure.arguments); // The thread pool's allocator is protected by the mutex. const mutex = &closure.pool.mutex; -- cgit v1.2.3