diff options
Diffstat (limited to 'Userland/Libraries/LibWasm')
-rw-r--r-- | Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWasm/Parser/Parser.cpp | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWasm/Printer/Printer.h | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibWasm/Types.h | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp b/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp index a1c383aa8e..2e11c1ccf1 100644 --- a/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp +++ b/Userland/Libraries/LibWasm/AbstractMachine/BytecodeInterpreter.cpp @@ -6,6 +6,7 @@ */ #include <AK/Debug.h> +#include <AK/Endian.h> #include <AK/MemoryStream.h> #include <LibWasm/AbstractMachine/AbstractMachine.h> #include <LibWasm/AbstractMachine/BytecodeInterpreter.h> diff --git a/Userland/Libraries/LibWasm/Parser/Parser.cpp b/Userland/Libraries/LibWasm/Parser/Parser.cpp index 42282fb7bd..4cab367580 100644 --- a/Userland/Libraries/LibWasm/Parser/Parser.cpp +++ b/Userland/Libraries/LibWasm/Parser/Parser.cpp @@ -5,6 +5,7 @@ */ #include <AK/Debug.h> +#include <AK/Endian.h> #include <AK/LEB128.h> #include <AK/MemoryStream.h> #include <AK/ScopeGuard.h> diff --git a/Userland/Libraries/LibWasm/Printer/Printer.h b/Userland/Libraries/LibWasm/Printer/Printer.h index 44b8c28809..c79475fd7c 100644 --- a/Userland/Libraries/LibWasm/Printer/Printer.h +++ b/Userland/Libraries/LibWasm/Printer/Printer.h @@ -6,7 +6,6 @@ #pragma once -#include <LibCore/Stream.h> #include <LibWasm/Types.h> namespace Wasm { diff --git a/Userland/Libraries/LibWasm/Types.h b/Userland/Libraries/LibWasm/Types.h index edab97c839..adbe900f27 100644 --- a/Userland/Libraries/LibWasm/Types.h +++ b/Userland/Libraries/LibWasm/Types.h @@ -13,7 +13,6 @@ #include <AK/NonnullOwnPtrVector.h> #include <AK/Result.h> #include <AK/Variant.h> -#include <LibCore/Stream.h> #include <LibWasm/Constants.h> #include <LibWasm/Forward.h> #include <LibWasm/Opcode.h> |