Skip to content

Commit 66ed3ff

Browse files
committed
remove unneeded where {T}.
1 parent 6649496 commit 66ed3ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SweepOperator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function syrk!(A::Symmetric{T, S}, α::T, x::AbstractArray{<:T}) where {T<:BlasN
7474
Symmetric(BLAS.syrk!('U', 'N', α, x, one(T), A.data))
7575
end
7676

77-
function syrk!(A, α, x) where {T}
77+
function syrk!(A, α, x) # fallback
7878
p = checksquare(A)
7979
for i in 1:p, j in i:p
8080
@inbounds A[i,j] += α * x[i] * x[j]

0 commit comments

Comments
 (0)