Skip to content

Commit

Permalink
Fix bug in COPY when box is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
moyner committed Apr 29, 2024
1 parent f12a9e5 commit 81963f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InputParser/keywords/special.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ end

function apply_copy!(vals, src, IX, dims)
I, J, K = IX
vals[I, J, K] = src
vals[I, J, K] = src[I, J, K]
end

function apply_add!(vals, src, IX, dims)
Expand Down

0 comments on commit 81963f0

Please sign in to comment.