Skip to content

Commit dda4aa5

Browse files
Update deprecated.jl
Some rules can be bent. JuliaLang#9803 Others can be broken. JuliaLang#9779
1 parent 4b20e10 commit dda4aa5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

base/deprecated.jl

+9
Original file line numberDiff line numberDiff line change
@@ -273,3 +273,12 @@ const base64 = base64encode
273273

274274
@deprecate error(ex::Exception) throw(ex)
275275
@deprecate error{E<:Exception}(::Type{E}) throw(E())
276+
277+
@deprecate CholmodSparse!(colpt, rowval, nzval, m) CholmodSparse(colpt, rowval, nzval, m)
278+
@ddprecate lufact!(S::SparseMatrixCSC) lufact(S)
279+
280+
@deprecate Triangular TriangularUnion
281+
@deprecate Triangular{T,S,:U,true} UnitUpperTriangular
282+
@deprecate Triangular{T,S,:L,true} UnitLowerTriangular
283+
@deprecate Triangular{T,S,:U,false} UpperTriangular
284+
@deprecate Triangular{T,S,:L,false} LowerTriangular

0 commit comments

Comments
 (0)