Utilities/wasm: Enable on Windows

This commit is contained in:
ayeteadoe 2025-08-08 12:10:39 -07:00 committed by Andrew Kaster
commit a95e0d2777
Notes: github-actions[bot] 2025-08-24 19:00:20 +00:00
5 changed files with 22 additions and 7 deletions

View file

@ -9,10 +9,11 @@
#include <AK/StackInfo.h>
#include <LibWasm/AbstractMachine/Configuration.h>
#include <LibWasm/AbstractMachine/Interpreter.h>
#include <LibWasm/Export.h>
namespace Wasm {
struct BytecodeInterpreter final : public Interpreter {
struct WASM_API BytecodeInterpreter final : public Interpreter {
explicit BytecodeInterpreter(StackInfo const& stack_info)
: m_stack_info(stack_info)
{