1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

LibWasm: Remove empty AbstractMachine/Interpreter.cpp

This was moved to BytecodeInterpreter.cpp, so this is unused now.
This commit is contained in:
Linus Groh 2021-06-20 01:48:52 +01:00
parent 87bd69559f
commit 34b338702a
2 changed files with 0 additions and 10 deletions

View file

@ -1,9 +0,0 @@
/*
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
namespace Wasm {
}

View file

@ -2,7 +2,6 @@ set(SOURCES
AbstractMachine/AbstractMachine.cpp
AbstractMachine/BytecodeInterpreter.cpp
AbstractMachine/Configuration.cpp
AbstractMachine/Interpreter.cpp
Parser/Parser.cpp
Printer/Printer.cpp
)