fix depwarn for .+ in range

This commit is contained in:
Jutho 2017-09-26 10:39:58 +02:00
parent b3f65e9b46
commit f647d8948b

View file

@ -231,7 +231,7 @@ function sumlist!(list::Vector{<:PrimeFactorization}, ind = 1:length(list))
L = length(ind)
if L > 32
l = L >> 1
s = sumlist!(list, first(ind)+(0:l-1)) + sumlist!(list, first(ind)+(l:L-1))
s = sumlist!(list, first(ind).+(0:l-1)) + sumlist!(list, first(ind).+(l:L-1))
else
# do sum
s = big(0)