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:
parent
e62a4c169b
commit
644d9c784d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue