Skip to content

Commit d989328

Browse files
Merge pull request #414 from JuliaArrays/qr
More qr_instance fixes
2 parents fbe6b8e + a49c4b5 commit d989328

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/ArrayInterface.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -573,11 +573,7 @@ Returns an instance of the QR factorization object with the correct type
573573
cheaply.
574574
"""
575575
function qr_instance(A::Matrix{T}) where {T}
576-
if VERSION >= v"1.9"
577-
LinearAlgebra.QRCompactWY(zeros(T,0,0),zeros(T,0,0))
578-
else
579-
LinearAlgebra.QRCompactWYQ(zeros(T,0,0),zeros(T,0,0))
580-
end
576+
LinearAlgebra.QRCompactWY(zeros(T,0,0),zeros(T,0,0))
581577
end
582578

583579
function qr_instance(A::Matrix{BigFloat})

0 commit comments

Comments
 (0)