diff --git a/src/cbor/containers_cbor.ml b/src/cbor/containers_cbor.ml index fd34015e..62f0e003 100644 --- a/src/cbor/containers_cbor.ml +++ b/src/cbor/containers_cbor.ml @@ -216,8 +216,9 @@ let decode_exn (s : string) : t = | 28 | 29 | 30 -> failwith "cbor: malformed" | 31 -> failwith "uncaught 'break' stop code" | _ -> assert false (* unreachable *)) - | _ -> assert false - (* unreachable *) + | _ -> + (* unreachable *) + assert false and read_bytes ~ty low = match read_int ~allow_indefinite:true low |> i64_to_int with | exception Indefinite ->