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

AK: Make FixedMemoryStream non-final

This commit is contained in:
kleines Filmröllchen 2023-09-19 12:01:04 +02:00 committed by Tim Schumacher
parent e62a4c169b
commit 644d9c784d

View file

@ -14,7 +14,7 @@ namespace AK {
/// A stream class that allows for reading/writing on a preallocated memory area
/// using a single read/write head.
class FixedMemoryStream final : public SeekableStream {
class FixedMemoryStream : public SeekableStream {
public:
explicit FixedMemoryStream(Bytes bytes);
explicit FixedMemoryStream(ReadonlyBytes bytes);