Skip to content
Merged
Changes from 1 commit
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: 2 additions & 1 deletion src/tokenize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,8 @@ end
function simple_hash(str)
ind = 1
h = UInt64(0)
while ind <= length(str)
L = length(str)
while ind <= L
h = simple_hash(str[ind], h)
ind = nextind(str, ind)
end
Expand Down
Loading