Skip to content

Commit 8f3c6f4

Browse files
Removed unnecessary type annotations
1 parent 056e48f commit 8f3c6f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ml-proto/src/spec/memory.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ let load mem a memty ext =
118118
| _ -> raise Type
119119
with Invalid_argument _ -> raise Bounds
120120

121-
let store (mem : t) (a : int) (memty : mem_type) v =
121+
let store mem a memty v =
122122
try
123123
(match memty, v with
124124
| Int8Mem, Int32 x -> store8 mem a x

0 commit comments

Comments
 (0)