Skip to content

Commit 009cb66

Browse files
committed
Use invoke function instead of macro
1 parent 39719a1 commit 009cb66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ end
348348
*(A::Transpose{<:Any,<:LayoutVector}, B::Transpose{<:Any,<:LayoutMatrix}) = mul(A,B)
349349

350350
# Disambiguation with FillArrays
351-
*(A::AbstractFill{<:Any,2}, B::LayoutVector) = @invoke *(A::AbstractFill{<:Any,2}, B::AbstractVector)
351+
*(A::AbstractFill{<:Any,2}, B::LayoutVector) = invoke(*, Tuple{AbstractFill{<:Any,2}, AbstractVector}, A, B)
352352

353353
## special routines introduced in v0.9. We need to avoid these to support ∞-arrays
354354

0 commit comments

Comments
 (0)