Skip to content

Commit 675ce94

Browse files
committed
Make JET happy
1 parent 3264f47 commit 675ce94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/implementations/lq.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,4 +269,4 @@ function _diagonal_lq!(A::AbstractMatrix, L::AbstractMatrix, Q::AbstractMatrix;
269269
return L, Q
270270
end
271271
272-
_diagonal_lq_null!(A::AbstractMatrix, N::AbstractMatrix) = N
272+
_diagonal_lq_null!(A::AbstractMatrix, N; positive::Bool=false) = N

src/implementations/qr.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ function _diagonal_qr!(A::AbstractMatrix, Q::AbstractMatrix, R::AbstractMatrix;
232232
return Q, R
233233
end
234234

235-
_diagonal_qr_null!(A::AbstractMatrix, N::AbstractMatrix) = N
235+
_diagonal_qr_null!(A::AbstractMatrix, N; positive::Bool=false) = N
236236

237237
### GPU logic
238238
# placed here to avoid code duplication since much of the logic is replicable across

0 commit comments

Comments
 (0)