Skip to content

Commit 1b3741c

Browse files
authored
emove unused type variables (#537)
1 parent ec9fe5b commit 1b3741c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/host/linalg.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ end
339339

340340
## matrix multiplication
341341
# legacy method
342-
generic_matmatmul!(C::AbstractArray, A::AbstractArray, B::AbstractArray, a::Number, b::Number) where {T,S,R} =
342+
generic_matmatmul!(C::AbstractArray, A::AbstractArray, B::AbstractArray, a::Number, b::Number) =
343343
generic_matmatmul!(C, A, B, MulAddMul(a, b))
344344
function generic_matmatmul!(C::AbstractArray{R}, A::AbstractArray{T}, B::AbstractArray{S}, add::MulAddMul) where {T,S,R}
345345
if size(A,2) != size(B,1)

0 commit comments

Comments
 (0)