Skip to content

Commit

Permalink
fix: missing interpolation in compile (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal authored Dec 18, 2024
1 parent 6aacf41 commit 0713d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compiler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ function codegen_unflatten!(
if path[2:end] == argpath[2:end]
continue
end
res = :(args[path[2]])
res = :(args[$(path[2])])
path = path[3:end]
end
for p in path
Expand Down

0 comments on commit 0713d99

Please sign in to comment.