Skip to content

Commit

Permalink
Update deprecated.jl
Browse files Browse the repository at this point in the history
Some rules can be bent. #9803

Others can be broken. #9779
  • Loading branch information
matrixmorpheus committed Jan 17, 2015
1 parent 4b20e10 commit 32c4368
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -273,3 +273,12 @@ const base64 = base64encode

@deprecate error(ex::Exception) throw(ex)
@deprecate error{E<:Exception}(::Type{E}) throw(E())

@deprecate CholmodSparse!(colpt, rowval, nzval, m) CholmodSparse(colpt, rowval, nzval, m)
@deprecate lufact!(S::SparseMatrixCSC) lufact(S)

@deprecate Triangular TriangularUnion
@deprecate Triangular{T,S,:U,true} Base.LinAlg.UnitUpperTriangular
@deprecate Triangular{T,S,:L,true} Base.LinAlg.UnitLowerTriangular
@deprecate Triangular{T,S,:U,false} UpperTriangular
@deprecate Triangular{T,S,:L,false} LowerTriangular

0 comments on commit 32c4368

Please sign in to comment.