Skip to content

Commit 11c5164

Browse files
Merge pull request #178 from JuliaArrays/depwarns
fix v1.7 deprecations
2 parents 90c269f + 3c831db commit 11c5164

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/array_index.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ struct StrideIndex{N,R,C,S,O,O1} <: ArrayIndex{N}
194194
offsets::O
195195
offset1::O1
196196

197-
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}
197+
function StrideIndex{N,R,C}(s::S, o::O, o1::O1) where {N,R,C,S,O,O1}
198198
return new{N,R::NTuple{N,Int},C::Int,S,O,O1}(s, o, o1)
199199
end
200200
function StrideIndex{N,R,C}(a::A) where {N,R,C,A}
@@ -287,4 +287,3 @@ end
287287
end
288288
return Expr(:block, Expr(:meta, :inline), out)
289289
end
290-

0 commit comments

Comments
 (0)