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

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

This commit is contained in:
Tim Schumacher 2023-04-05 16:41:05 +02:00 committed by Brian Gianforcaro
parent 68984abc43
commit e6b1e1bb33
2 changed files with 106 additions and 96 deletions

View file

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