From 091399974a16c8449a212753804d47bc37ec4012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20S=C3=A1nchez=20Ram=C3=ADrez?= Date: Tue, 2 Jul 2024 00:31:00 +0200 Subject: [PATCH] Replace vector comprehension for tuple --- src/Reactant.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reactant.jl b/src/Reactant.jl index f6dc3d094..910bdadeb 100644 --- a/src/Reactant.jl +++ b/src/Reactant.jl @@ -888,7 +888,7 @@ end # if `f` is a closure, then prepend the closure into `args` # the closure fields will be correctly extracted from it as the tracer has already passed through it if !(closure_ty <: Nothing) - :(args = [thunk.fnwrap, args...]) + :(args = (thunk.fnwrap, args...)) end ) $exec_call