From c7f513be0da3af759c49bc7e80bcc81417a9f2e9 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sat, 7 Sep 2024 20:29:21 -0400 Subject: [PATCH] Fix depwarns --- src/shape_construction.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shape_construction.jl b/src/shape_construction.jl index 11464d6..2edfd12 100644 --- a/src/shape_construction.jl +++ b/src/shape_construction.jl @@ -50,10 +50,10 @@ where {T <: AbstractMultiScaleArray}) = __construct(T, nodes, eltype(T)[], args. (construct(::Type{T}, nodes::AbstractVector{<:AbstractMultiScaleArray}, values, args...) where {T <: AbstractMultiScaleArray}) = __construct(T, nodes, values, args...) -(construct(::Type{T}, nodes::Tuple{Vararg{<:AbstractMultiScaleArray}}, args...) +(construct(::Type{T}, nodes::Vararg{AbstractMultiScaleArray}, args...) where {T <: AbstractMultiScaleArray}) = __construct(T, nodes, eltype(T)[], args...) -(construct(::Type{T}, nodes::Tuple{Vararg{<:AbstractMultiScaleArray}}, values, args...) +(construct(::Type{T}, nodes::Vararg{AbstractMultiScaleArray}, values, args...) where {T <: AbstractMultiScaleArray}) = __construct(T, nodes, values, args...) function vcat(m1::AbstractMultiScaleArray, m2::AbstractMultiScaleArray)