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 1, 2024
1 parent 47708e1 commit 5b95e5b
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 @@ -896,7 +896,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 5b95e5b

Please sign in to comment.