Skip to content

Commit

Permalink
Merge pull request #262 from jarlela/bugfix/Compat
Browse files Browse the repository at this point in the history
Removed invalid reference to 'Compat'
  • Loading branch information
quinnj authored Jul 30, 2019
2 parents 4db67db + f287868 commit 8b135b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function pairs(d::NDSparse, idxs::Vararg{Any,N}) where N
cs = astuple(columns(I))
data = d.data
rng = range_estimate(I, idxs)
(I[i]=>data[i] for i in Compat.Iterators.Filter(r->row_in(cs, r, idxs), rng))
(I[i]=>data[i] for i in Iterators.Filter(r->row_in(cs, r, idxs), rng))
end

# setindex!
Expand Down

0 comments on commit 8b135b3

Please sign in to comment.