mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
AK: Make FixedMemoryStream non-final
This commit is contained in:
parent
e62a4c169b
commit
644d9c784d
Notes:
sideshowbarker
2024-07-17 07:08:37 +09:00
Author: https://github.com/kleinesfilmroellchen Commit: https://github.com/SerenityOS/serenity/commit/644d9c784d Pull-request: https://github.com/SerenityOS/serenity/pull/21156 Reviewed-by: https://github.com/alimpfard Reviewed-by: https://github.com/timschumi ✅
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…
Reference in a new issue