Skip to content

Commit

Permalink
Replace a use of full in base/deprecated.jl. (#23728)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha0 authored and andreasnoack committed Sep 16, 2017
1 parent c23d6bc commit adf8fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ next(p::Union{Process, ProcessChain}, i::Int) = (getindex(p, i), i + 1)
end

import .LinAlg: cond
@deprecate cond(F::LinAlg.LU, p::Integer) cond(full(F), p)
@deprecate cond(F::LinAlg.LU, p::Integer) cond(convert(AbstractArray, F), p)

# PR #21359
import .Random: srand
Expand Down

0 comments on commit adf8fb3

Please sign in to comment.