Skip to content

Commit fe08274

Browse files
authored
typo
1 parent 8a55761 commit fe08274

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
@@ -158,7 +158,7 @@ function lu!(F::LU{<:Any,<:StridedMatrix{<:BlasFloat}}, A; check::Bool = true, a
158158
copyto!(F.factors, A)
159159
lpt = LAPACK.getrf!(F.factors, F.ipiv; check)
160160
check && _check_lu_success(lpt[3], allowsingular)
161-
return LU{T,typeof(lpt[1]),typeof(lpt[2])}(lpt[1], lpt[2], lpt[3])
161+
return LU{eltype(lpt[1]),typeof(lpt[1]),typeof(lpt[2])}(lpt[1], lpt[2], lpt[3])
162162
end
163163

164164
# for backward compatibility

0 commit comments

Comments
 (0)