The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add comment explaining why assert false is safe.

authored by

Matthias Horn and committed by
GitHub
b7f2ab34 37d28446

+1 -1
+1 -1
vendor/opam/base64/src/base64_rfc2045.ml
··· 141 141 unsafe_set_chr buffer 0 (unsafe_chr ((quantum lsr 8) land 255)) ; 142 142 unsafe_set_chr buffer 1 (unsafe_chr (quantum land 255)) ; 143 143 `Flush {quantum; size; buffer= Bytes.sub buffer 0 2} 144 - | _ -> assert false 144 + | _ -> assert false (* this branch is impossible, size can only ever be in the range [0..3]. *) 145 145 146 146 let rec t_decode_base64 chr decoder = 147 147 if decoder.padding = 0 then