Skip to content

Commit

Permalink
fix deprecation of spones from #25037 (#25330)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre authored Dec 31, 2017
1 parent 56b59ec commit 9018379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1940,8 +1940,8 @@ end
@eval LinAlg @deprecate fillslots! fillstored! false

# PR #25037
@eval SparseArrays @deprecate spones(A::SparseMatrixCSC) fillstored!(copy(A), 1)
@eval SparseArrays @deprecate spones(A::SparseVector) fillstored!(copy(A), 1)
@eval SparseArrays @deprecate spones(A::SparseMatrixCSC) LinAlg.fillstored!(copy(A), 1)
@eval SparseArrays @deprecate spones(A::SparseVector) LinAlg.fillstored!(copy(A), 1)
using .SparseArrays.spones
export spones

Expand Down

0 comments on commit 9018379

Please sign in to comment.