You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the precompilation we get the following warning
I suspect this comes from line 2 in helpers.jl but I am not sure whether just removing <: is the right move here.
const VecOrTuple{S} = Union{Vector{<:S},Tuple{Vararg{<:S}}} where {S}`
Error:
│ WARNING: Wrapping `Vararg` directly in UnionAll is deprecated (wrap the tuple instead).
│ You may need to write `f(x::Vararg{T})` rather than `f(x::Vararg{<:T})` or `f(x::Vararg{T}) where T` instead of `f(x::Vararg{T} where T)`.
The text was updated successfully, but these errors were encountered:
During the precompilation we get the following warning
I suspect this comes from line 2 in helpers.jl but I am not sure whether just removing <: is the right move here.
Error:
The text was updated successfully, but these errors were encountered: