1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:27:35 +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:
kleines Filmröllchen 2023-07-04 17:47:23 +02:00 committed by Andrew Kaster
parent c2d9d0277f
commit 001ea22917
3 changed files with 46 additions and 10 deletions

View file

@ -117,6 +117,6 @@ private:
AK_ENUM_BITWISE_OPERATORS(File::OpenMode)
using InputBufferedFile = InputBufferedSeekable<File>;
using OutputBufferedFile = OutputBufferedStream<File>;
using OutputBufferedFile = OutputBufferedSeekable<File>;
}