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
Notes: sideshowbarker 2024-07-17 07:08:37 +09:00

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);