mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
fix stupid typo
This commit is contained in:
parent
0baa4fddec
commit
02c0953468
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ let[@inline] array_is_empty_ v =
|
||||||
|
|
||||||
(* next capacity, if current one is [n] *)
|
(* next capacity, if current one is [n] *)
|
||||||
let[@inline] next_grow_ n =
|
let[@inline] next_grow_ n =
|
||||||
min Sys.max_array_length (n + n lsl 1 + 5)
|
min Sys.max_array_length (n + n lsr 1 + 5)
|
||||||
|
|
||||||
(* resize the underlying array using x to temporarily fill the array *)
|
(* resize the underlying array using x to temporarily fill the array *)
|
||||||
let resize_ v newcapacity x =
|
let resize_ v newcapacity x =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue