From 34b338702aeef7ede26b38c9b0091152f8f3169f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 20 Jun 2021 01:48:52 +0100 Subject: [PATCH] LibWasm: Remove empty AbstractMachine/Interpreter.cpp This was moved to BytecodeInterpreter.cpp, so this is unused now. --- .../Libraries/LibWasm/AbstractMachine/Interpreter.cpp | 9 --------- Userland/Libraries/LibWasm/CMakeLists.txt | 1 - 2 files changed, 10 deletions(-) delete mode 100644 Userland/Libraries/LibWasm/AbstractMachine/Interpreter.cpp diff --git a/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.cpp b/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.cpp deleted file mode 100644 index c67dea472a..0000000000 --- a/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.cpp +++ /dev/null @@ -1,9 +0,0 @@ -/* - * Copyright (c) 2021, Ali Mohammad Pur - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -namespace Wasm { - -} diff --git a/Userland/Libraries/LibWasm/CMakeLists.txt b/Userland/Libraries/LibWasm/CMakeLists.txt index ec1bb19aeb..748137b6a9 100644 --- a/Userland/Libraries/LibWasm/CMakeLists.txt +++ b/Userland/Libraries/LibWasm/CMakeLists.txt @@ -2,7 +2,6 @@ set(SOURCES AbstractMachine/AbstractMachine.cpp AbstractMachine/BytecodeInterpreter.cpp AbstractMachine/Configuration.cpp - AbstractMachine/Interpreter.cpp Parser/Parser.cpp Printer/Printer.cpp )