Skip to content

Commit 6200e94

Browse files
authored
Merge pull request #66 from KnutAM/patch-1
Prevent deprecation warning on LU
2 parents 42787c3 + 204e1fa commit 6200e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function lu!(A::AbstractMatrix{T}, ipiv::AbstractVector{<:Integer},
9393
info = _generic_lufact!(A, pivot, ipiv, info)
9494
end
9595
check && checknonsingular(info)
96-
LU{T, typeof(A)}(A, ipiv, info)
96+
LU(A, ipiv, info)
9797
end
9898

9999
@inline function recurse!(A, ::Val{Pivot}, m, n, mnmin, ipiv, info, blocksize,

0 commit comments

Comments
 (0)