Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit b5e5eed

Browse files
committed
Bump reanalyze to version 2.14.0.
1 parent cbd210a commit b5e5eed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {},
1010
"devDependencies": {
1111
"jest": "^24.9.0",
12-
"reanalyze": "^2.10.0"
12+
"reanalyze": "^2.14.0"
1313
},
1414
"private": true,
1515
"scripts": {},

src/res_minibuffer.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let create n =
99
let s = (Bytes.create [@doesNotRaise]) n in
1010
{buffer = s; position = 0; length = n}
1111

12-
let contents b = Bytes.sub_string b.buffer 0 b.position
12+
let contents b = (Bytes.sub_string [@doesNotRaise]) b.buffer 0 b.position
1313

1414
(* Can't be called directly, don't add to the interface *)
1515
let resize_internal b more =

0 commit comments

Comments
 (0)