Skip to content

Commit

Permalink
Replace vector comprehension for tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Sánchez Ramírez committed Jul 3, 2024
1 parent 5c2207a commit 0913999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reactant.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0913999

Please sign in to comment.