Skip to content

Commit

Permalink
Style update
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman authored Oct 6, 2023
1 parent 5e86a38 commit 490e898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NDTensors/src/SmallVectors/src/BaseExt/sortedunique.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function unionsortedunique(itr1, itr2, order::Ordering)
# TODO: Use `insertat!`?
r1 = i1:stop1
resize!(out, length(out) + length(r1))
@inbounds for j1 in i1:stop1
@inbounds for j1 in r1
out[iout] = itr1[j1]
iout += 1
end
Expand Down

0 comments on commit 490e898

Please sign in to comment.