Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion compiler/lib/vlq64.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
7 changes: 1 addition & 6 deletions compiler/tests-ocaml/lib-effects/dune
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@
(:standard -w -38))
(js_of_ocaml
(flags
(:standard --enable effects))
;; separate compilation doesn't work when using
;; features such as 'effects' or 'use-js-string'
;; because dune doesn't know that it should compile
;; multiple versions of the dependencies
(compilation_mode whole_program))))
(:standard --enable effects)))))

(executables
(enabled_if
Expand Down
Loading