Skip to content

Commit

Permalink
delete unused method static parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
nsajko authored Feb 5, 2025
1 parent 64a2d2b commit e7a99f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FixedSizeArray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function check_ndims(::Type{FSA}, size::Tuple{Vararg{Integer}}) where {N, FSA <:
throw(DimensionMismatch("mismatch between dimension count in type and the length of the size tuple"))
end
end
function check_ndims(::Type{FSA}, size::Tuple{Vararg{Integer}}) where {FSA <: FixedSizeArray}
function check_ndims(::Type{<:FixedSizeArray}, size::Tuple{Vararg{Integer}})
end

function undef_constructor(::Type{FSA}, size::Tuple{Vararg{Integer}}) where {E, FSA <: FixedSizeArray{E}}
Expand Down

0 comments on commit e7a99f5

Please sign in to comment.