Skip to content

Commit

Permalink
fix oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch committed Jul 22, 2021
1 parent 3959603 commit 66e653c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/diagonal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ end
@deprecate cholesky!(A::Diagonal, ::Val{false}; check::Bool = true) cholesky!(A::Diagonal, NoPivot(); check) false

cholesky(A::Diagonal, ::NoPivot = NoPivot(); check::Bool = true) =
cholesky!(cholcopy(A), Val(false); check = check)
cholesky!(cholcopy(A), NoPivot(); check = check)
@deprecate cholesky(A::Diagonal, ::Val{false}; check::Bool = true) cholesky(A::Diagonal, NoPivot(); check) false

function getproperty(C::Cholesky{<:Any,<:Diagonal}, d::Symbol)
Expand Down

0 comments on commit 66e653c

Please sign in to comment.