Skip to content

Commit 88f6dd6

Browse files
committed
Add missing @inbounds annotation.
1 parent 94e857a commit 88f6dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TypeSortedCollections.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ end
141141
push!(expr.args, quote
142142
let inds = leading_tsc.indices[$i]
143143
@boundscheck indices_match($vali, inds, dest, args...) || indices_match_fail()
144-
for j in linearindices(inds)
144+
@inbounds for j in linearindices(inds)
145145
vecindex = inds[j]
146146
_setindex!($vali, j, vecindex, dest, f(_getindex_all($vali, j, vecindex, args...)...))
147147
end

0 commit comments

Comments
 (0)