We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b553b6d commit 55fca34Copy full SHA for 55fca34
compiler/lib/vlq64.ml
@@ -22,7 +22,7 @@ open! Stdlib
22
let alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
23
24
let code_rev =
25
- let a = Array.make 255 (-1) in
+ let a = Array.make 256 (-1) in
26
for i = 0 to String.length alphabet - 1 do
27
a.(Char.code alphabet.[i]) <- i
28
done;
0 commit comments