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
commit 68984abc43
Notes: sideshowbarker 2024-07-17 03:59:29 +09:00
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;