Skip to content

Commit fcc86bb

Browse files
committed
fix merge fail in inv of svd
1 parent 35f45ce commit fcc86bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ function ldiv!(A::SVD{T}, B::AbstractVecOrMat) where T
271271
return B
272272
end
273273

274-
function inv(F::SVD)
274+
function inv(F::SVD{T}) where T
275275
checksquare(F)
276276
@inbounds for i in eachindex(F.S)
277277
iszero(F.S[i]) && throw(SingularException(i))

0 commit comments

Comments
 (0)