Skip to content

Commit

Permalink
fixed typing of DEDataArray on 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Mar 18, 2017
1 parent b0efbfd commit 18b8a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data_array.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
similar(A::DEDataArray) = deepcopy(A)

done(A::DEDataArray, i::Int64) = done(A.x,i)
done(A::DEDataArray, i::Int) = done(A.x,i)
eachindex(A::DEDataArray) = eachindex(A.x)
next(A::DEDataArray, i::Int64) = next(A.x,i)
next(A::DEDataArray, i::Int) = next(A.x,i)
start(A::DEDataArray) = start(A.x)

length(A::DEDataArray) = length(A.x)
Expand Down

0 comments on commit 18b8a71

Please sign in to comment.