Skip to content

Commit 4e3b722

Browse files
committed
fix?
1 parent 9de0890 commit 4e3b722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linearcombination.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ end
157157
function Base.:(*)(A::LinearCombination{<:Any,<:Tuple{Vararg{OOPFunctionMap}}}, x::AbstractVector)
158158
mapreduce(L -> L * x, Base.add_sum, A.maps)
159159
end
160-
function Base.:(*)(A::LinearCombination{<:Any,<:Tuple{Vararg{OOPFunctionMap{T}}}}, x::AbstractVector) where {T}
160+
function Base.:(*)(A::LinearCombination{T,<:Tuple{Vararg{OOPFunctionMap{T}}}}, x::AbstractVector) where {T}
161161
mapreduce(L -> L * x, (x, y) -> x .+= y, A.maps)
162162
end
163163

0 commit comments

Comments
 (0)