diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-02-10 01:00:18 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-13 00:50:07 +0000 |
commit | 43f98ac6e1eb913846980226b2524a4b419c6183 (patch) | |
tree | b0c508cafcd9cb9d4698d0bad4579cfc433a9e14 /Meta | |
parent | 874c7bba289222916911caf3102c77ee3a261d77 (diff) | |
download | serenity-43f98ac6e1eb913846980226b2524a4b419c6183.zip |
Everywhere: Remove the `AK::` qualifier from Stream usages
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp | 2 | ||||
-rw-r--r-- | Meta/Lagom/Wasm/js_repl.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp b/Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp index 080784ee13..e6a988bafe 100644 --- a/Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp @@ -338,7 +338,7 @@ public:)~~~"); static i32 static_message_id() { return (int)MessageID::@message.pascal_name@; } virtual const char* message_name() const override { return "@endpoint.name@::@message.pascal_name@"; } - static ErrorOr<NonnullOwnPtr<@message.pascal_name@>> decode(AK::Stream& stream, Core::LocalSocket& socket) + static ErrorOr<NonnullOwnPtr<@message.pascal_name@>> decode(Stream& stream, Core::LocalSocket& socket) { IPC::Decoder decoder { stream, socket };)~~~"); diff --git a/Meta/Lagom/Wasm/js_repl.cpp b/Meta/Lagom/Wasm/js_repl.cpp index b508b92fa6..2db5097a21 100644 --- a/Meta/Lagom/Wasm/js_repl.cpp +++ b/Meta/Lagom/Wasm/js_repl.cpp @@ -62,7 +62,7 @@ void displayln(CheckedFormatString<Args...> format_string, Args const&... args) void displayln() { user_display("\n", 1); } -class UserDisplayStream final : public AK::Stream { +class UserDisplayStream final : public Stream { virtual ErrorOr<Bytes> read(Bytes) override { return Error::from_string_view("Not readable"sv); }; virtual ErrorOr<size_t> write(ReadonlyBytes bytes) override { |