Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/array_index.jl
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ struct StrideIndex{N,R,C,S,O,O1} <: ArrayIndex{N}
offsets::O
offset1::O1

function StrideIndex{N,R,C}(s::S, o::O, o1::O1) where {N,R,C,S<:Tuple{Vararg{<:CanonicalInt,N}},O<:Tuple{Vararg{<:CanonicalInt,N}},O1}
function StrideIndex{N,R,C}(s::S, o::O, o1::O1) where {N,R,C,S,O,O1}
return new{N,R::NTuple{N,Int},C::Int,S,O,O1}(s, o, o1)
end
function StrideIndex{N,R,C}(a::A) where {N,R,C,A}
Expand Down Expand Up @@ -287,4 +287,3 @@ end
end
return Expr(:block, Expr(:meta, :inline), out)
end