Skip to content

Commit 8a4024f

Browse files
committed
fix oopsie
1 parent 4e208e3 commit 8a4024f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/implementations/lq.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function householder_lq!(
175175
return L, Q
176176
end
177177
function householder_lq!(
178-
::Native, A::AbstractMatrix, L::AbstractMatrix, Q::AbstractMatrix;
178+
driver::Native, A::AbstractMatrix, L::AbstractMatrix, Q::AbstractMatrix;
179179
positive::Bool = true, pivoted::Bool = false, blocksize::Int = 1
180180
)
181181
# error messages for disallowing driver - setting combinations
@@ -247,7 +247,7 @@ function householder_lq_null!(
247247
return Nᴴ
248248
end
249249
function householder_lq_null!(
250-
::Native, A::AbstractMatrix, Nᴴ::AbstractMatrix;
250+
driver::Native, A::AbstractMatrix, Nᴴ::AbstractMatrix;
251251
positive::Bool = true, pivoted::Bool = false, blocksize::Int = 1
252252
)
253253
# error messages for disallowing driver - setting combinations

0 commit comments

Comments
 (0)