Skip to content

Commit 0536d29

Browse files
committed
https://github.com/samoconnor/LazyJSON.jl/pull/3#discussion_r231293734
1 parent bcfdb23 commit 0536d29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Number.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function parse_number(s, i)
6565
end
6666

6767
# int
68-
while (decimal = c - UInt8('0')) < UInt(10)
68+
while (decimal = c - UInt8('0')) < UInt8(10)
6969
end_i = i
7070
v = 10v + decimal
7171
if v < 0

0 commit comments

Comments
 (0)