Skip to content

Commit d535cfe

Browse files
committed
detail
1 parent 249dc35 commit d535cfe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/cbor/containers_cbor.ml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,9 @@ let decode_exn (s : string) : t =
216216
| 28 | 29 | 30 -> failwith "cbor: malformed"
217217
| 31 -> failwith "uncaught 'break' stop code"
218218
| _ -> assert false (* unreachable *))
219-
| _ -> assert false
220-
(* unreachable *)
219+
| _ ->
220+
(* unreachable *)
221+
assert false
221222
and read_bytes ~ty low =
222223
match read_int ~allow_indefinite:true low |> i64_to_int with
223224
| exception Indefinite ->

0 commit comments

Comments
 (0)