Skip to content

Commit 29c17ac

Browse files
committed
fix: missing qualifier
1 parent 1efafca commit 29c17ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ for op in (:adjoint, :transpose)
100100
@eval function Base.$(op)(operator::JacobianOperator{iip, T}) where {iip, T}
101101
return JacobianOperator{iip, T}(
102102
flip_mode(operator.mode), operator.jvp_op, operator.vjp_op,
103-
reverse(operator.size), input_cache, output_cache)
103+
reverse(operator.size), operator.input_cache, operator.output_cache)
104104
end
105105
end
106106

0 commit comments

Comments
 (0)