Skip to content

Commit

Permalink
Update stdlib/LinearAlgebra/src/lapack.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison authored Nov 2, 2023
1 parent 2db81ef commit 574c85d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion stdlib/LinearAlgebra/src/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7008,7 +7008,6 @@ for (fn, elty) in ((:dlacpy_, :Float64),
function lacpy!(B::AbstractMatrix{$elty}, A::AbstractMatrix{$elty}, uplo::AbstractChar)
require_one_based_indexing(A, B)
chkstride1(A, B)
chkuplo(uplo)
m,n = size(A)
m1,n1 = size(B)
(m1 < m || n1 < n) && throw(DimensionMismatch("B of size ($m1,$n1) should have at least the same number of rows and columns than A of size ($m,$n)"))
Expand Down

0 comments on commit 574c85d

Please sign in to comment.