Skip to content

Commit 24a229c

Browse files
committed
Fix append! of AbstractVector of AbstractArray to VectorOfArrays
1 parent 435a645 commit 24a229c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vector_of_arrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ function Base.append!(A::VectorOfArrays{T,N}, B::VectorOfArrays{U,N}) where {T,N
243243
end
244244

245245

246-
function Base.append!(A::VectorOfArrays{T,N}, B::AbstractVector{AbstractArray{U,N}}) where {T,N,U}
246+
function Base.append!(A::VectorOfArrays{T,N}, B::AbstractVector{<:AbstractArray{U,N}}) where {T,N,U}
247247
if !isempty(B)
248248
n_A = length(eachindex(A))
249249
n_B = length(eachindex(B))

0 commit comments

Comments
 (0)