Skip to content

Commit 1af4188

Browse files
authored
fix-varargs (#700)
`Vararg{<:Any, N}` should be `Vararg{Any, N}`
1 parent 78c1036 commit 1af4188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sparse/broadcast.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ struct CSRIterator{Ti,N,ATs}
114114
args::ATs
115115
end
116116

117-
function CSRIterator{Ti}(row, args::Vararg{<:Any, N}) where {Ti,N}
117+
function CSRIterator{Ti}(row, args::Vararg{Any, N}) where {Ti,N}
118118
# check that `row` is valid for all arguments
119119
@boundscheck begin
120120
ntuple(Val(N)) do i
@@ -199,7 +199,7 @@ struct CSCIterator{Ti,N,ATs}
199199
args::ATs
200200
end
201201

202-
function CSCIterator{Ti}(col, args::Vararg{<:Any, N}) where {Ti,N}
202+
function CSCIterator{Ti}(col, args::Vararg{Any, N}) where {Ti,N}
203203
# check that `col` is valid for all arguments
204204
@boundscheck begin
205205
ntuple(Val(N)) do i

0 commit comments

Comments
 (0)