Skip to content

Commit 37ac03a

Browse files
authored
Fix Unbound module Stdlib__Nativeint_u (#2359)
Building `make world.opt` in `ocaml/` would fail due to an unbound module Stdlib__Nativeint_u
1 parent c8b2723 commit 37ac03a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ocaml/stdlib/StdlibModules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ STDLIB_MODULE_BASENAMES = \
6262
float_u \
6363
int32 \
6464
int32_u \
65-
int64 \
66-
int64_u \
6765
nativeint \
6866
nativeint_u \
67+
int64 \
68+
int64_u \
6969
lexing \
7070
parsing \
7171
set \

0 commit comments

Comments
 (0)