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

LibCompress: Move finishing the current XZ block into its own function

This commit is contained in:
Tim Schumacher 2023-04-05 16:34:06 +02:00 committed by Brian Gianforcaro
parent 0e11e7012d
commit 68984abc43
2 changed files with 51 additions and 44 deletions

View file

@ -112,6 +112,7 @@ private:
XzDecompressor(NonnullOwnPtr<CountingStream>);
ErrorOr<bool> load_next_stream();
ErrorOr<void> finish_current_block();
NonnullOwnPtr<CountingStream> m_stream;
Optional<XzStreamFlags> m_stream_flags;