Skip to content

Commit 1e91f0e

Browse files
don't forget to remove
1 parent 8e66b0a commit 1e91f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_partition.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Base.all(f, A::ArrayPartition) = all(f, (all(f, x) for x in A.x))
176176
Base.all(f::Function, A::ArrayPartition) = all((all(f, x) for x in A.x))
177177
Base.all(A::ArrayPartition) = all(identity, A)
178178

179-
for type in [AbstractArray, SparseArrays.AbstractCompressedVector, PermutedDimsArray]
179+
for type in [AbstractArray, PermutedDimsArray]
180180
@eval function Base.copyto!(dest::$(type), A::ArrayPartition)
181181
@assert length(dest) == length(A)
182182
cur = 1

0 commit comments

Comments
 (0)