We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249dc35 commit d535cfeCopy full SHA for d535cfe
src/cbor/containers_cbor.ml
@@ -216,8 +216,9 @@ let decode_exn (s : string) : t =
216
| 28 | 29 | 30 -> failwith "cbor: malformed"
217
| 31 -> failwith "uncaught 'break' stop code"
218
| _ -> assert false (* unreachable *))
219
- | _ -> assert false
220
- (* unreachable *)
+ | _ ->
+ (* unreachable *)
221
+ assert false
222
and read_bytes ~ty low =
223
match read_int ~allow_indefinite:true low |> i64_to_int with
224
| exception Indefinite ->
0 commit comments