Skip to content

Commit

Permalink
remove unused type arg
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz committed Jul 19, 2024
1 parent 6db306f commit 4d89d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Array{T}(vec::AbstractVector) where T
return arr
end

function Array{T}(t::Tuple{Vararg{S}}) where T <: Array_suppT where S
function Array{T}(t::Tuple) where T <: Array_suppT
return Array{T}(collect(t))

Check warning on line 31 in src/arrays.jl

View check run for this annotation

Codecov / codecov/patch

src/arrays.jl#L30-L31

Added lines #L30 - L31 were not covered by tests
end

Expand Down

0 comments on commit 4d89d6c

Please sign in to comment.