1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:37:34 +00:00

LibCompress: Remove unnecessary InputBitStream.

This commit is contained in:
asynts 2020-09-08 17:46:19 +02:00 committed by Andreas Kling
parent 4af8eea56f
commit 49e6ff8958
2 changed files with 5 additions and 6 deletions

View file

@ -97,7 +97,7 @@ public:
static Optional<ByteBuffer> decompress_all(ReadonlyBytes);
private:
u32 decode_run_length(u32);
u32 decode_length(u32);
u32 decode_distance(u32);
void decode_codes(CanonicalCode& literal_code, Optional<CanonicalCode>& distance_code);