diff options
author | Sahan Fernando <sahan.h.fernando@gmail.com> | 2021-06-04 21:54:20 +1000 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-05 14:31:54 +0430 |
commit | d02e7b38119107a8bc42af8e23d8e6d491b18c78 (patch) | |
tree | e1b798474f16ca4dfe2011d50d0d88c4985754e7 /Tests | |
parent | 94551149d1b5b468f5d8779386178ba9ee9207fe (diff) | |
download | serenity-d02e7b38119107a8bc42af8e23d8e6d491b18c78.zip |
LibWasm: Move Wasm::BytecodeInterpreter into its own header
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LibWasm/test-wasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibWasm/test-wasm.cpp b/Tests/LibWasm/test-wasm.cpp index 086203251b..7b6f3c6aa5 100644 --- a/Tests/LibWasm/test-wasm.cpp +++ b/Tests/LibWasm/test-wasm.cpp @@ -6,7 +6,7 @@ #include <LibCore/File.h> #include <LibTest/JavaScriptTestRunner.h> -#include <LibWasm/AbstractMachine/Interpreter.h> +#include <LibWasm/AbstractMachine/BytecodeInterpreter.h> #include <LibWasm/Types.h> TEST_ROOT("Userland/Libraries/LibWasm/Tests"); |