Skip to content

Commit 078785e

Browse files
fix depwarn
1 parent 5750f7e commit 078785e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

REQUIRE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
julia 0.5
22
Iterators
3+
Compat 0.17.0

src/RecursiveArrayTools.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module RecursiveArrayTools
44

55
using Iterators
66

7+
@compat abstract type AbstractVectorOfArray{T, N} <: AbstractArray{T, N} end
8+
79
include("utils.jl")
810
include("vector_of_array.jl")
911
include("array_partition.jl")

src/vector_of_array.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
abstract AbstractVectorOfArray{T, N} <: AbstractArray{T, N}
2-
31
# Based on code from M. Bauman Stackexchange answer + Gitter discussion
42
type VectorOfArray{T, N, A} <: AbstractVectorOfArray{T, N}
53
u::A # A <: AbstractVector{<: AbstractArray{T, N - 1}}

0 commit comments

Comments
 (0)