Skip to content

Commit

Permalink
remove unused parametric type
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarling committed Jul 15, 2024
1 parent d4db8d4 commit 97aed8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ true
```
"""
vecs_to_svecs(vecs::Vararg{T, N}) where {T <: AbstractVector{<:Number}, N} = SVector.(zip(vecs...))
vecs_to_svecs(x::AbstractVector{<:AbstractVector{T}}) where T = vecs_to_svecs(x...)
vecs_to_svecs(x::AbstractVector{<:AbstractVector{<:Number}}) = vecs_to_svecs(x...)

# vecs_to_svecs(vecs::Vararg{<:AbstractArray{<:Number},N}) where {N} = vecs
# old implementation
Expand Down

0 comments on commit 97aed8b

Please sign in to comment.