Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ocaml-wasm/wasm_of_ocaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e9f39da37557e796db3a72eb03dbf209c9e32181
Choose a base ref
..
head repository: ocaml-wasm/wasm_of_ocaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 04db0cc055009ce069fab6bea3c257718283f6ef
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 compiler/lib/vlq64.ml
2 changes: 1 addition & 1 deletion compiler/lib/vlq64.ml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ open! Stdlib
let alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="

let code_rev =
let a = Array.make 255 (-1) in
let a = Array.make 256 (-1) in
for i = 0 to String.length alphabet - 1 do
a.(Char.code alphabet.[i]) <- i
done;