mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 07:37:03 +00:00
AK+LibCore: Make output buffered stream seekable
Just like with input buffered streams, we don't currently have a use case for output buffered streams which aren't seekable, since the main application are files.
This commit is contained in:
parent
c2d9d0277f
commit
001ea22917
Notes:
sideshowbarker
2024-07-16 21:51:02 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: 001ea22917
Pull-request: https://github.com/SerenityOS/serenity/pull/19790
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/LucasChollet
Reviewed-by: https://github.com/alimpfard
3 changed files with 46 additions and 10 deletions
|
@ -117,6 +117,6 @@ private:
|
|||
AK_ENUM_BITWISE_OPERATORS(File::OpenMode)
|
||||
|
||||
using InputBufferedFile = InputBufferedSeekable<File>;
|
||||
using OutputBufferedFile = OutputBufferedStream<File>;
|
||||
using OutputBufferedFile = OutputBufferedSeekable<File>;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue