Skip to content

Commit

Permalink
Line 259: x::Char == y::Integer is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
timbitz authored May 21, 2017
1 parent 02908d4 commit 21cf410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sais.jl
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function LMSsort(T, SA, C, B, n, k)
for i = n:-1:1
if 0 < (j = SA[i])
c0 = T[j+1]
if c0 != c1
if Int(c0) != Int(c1)
B[c1+1] = b
c1 = c0
b = B[Int(c1)+1]
Expand Down

0 comments on commit 21cf410

Please sign in to comment.