Skip to content

Commit

Permalink
add back missing inbounds macro
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed May 14, 2016
1 parent 98c0b8a commit 84e4563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/sparse/sparsematrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2273,7 +2273,7 @@ function spset!{Tv,Ti<:Integer}(A::SparseMatrixCSC{Tv}, x::Tv, I::AbstractVector

rowidx = 1
nadd = 0
for col in 1:n
@inbounds for col in 1:n
rrange = nzrange(A, col)
if nadd > 0
A.colptr[col] = A.colptr[col] + nadd
Expand Down

0 comments on commit 84e4563

Please sign in to comment.