Skip to content

Commit 92e0d00

Browse files
Remove extra arguments in mul!
1 parent 206c4c7 commit 92e0d00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ function LinearAlgebra.mul!(v::AbstractVecOrMat, L::AddedOperator, u::AbstractVe
445445
mul!(v, first(L.ops), u)
446446
for op in L.ops[2:end]
447447
iszero(op) && continue
448-
mul!(v, op, u, true, true)
448+
mul!(v, op, u)
449449
end
450450
v
451451
end

0 commit comments

Comments
 (0)