From 2839a631ecb416c9f5bd96140f8e465129725d7d Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Tue, 15 Apr 2025 16:01:01 -0600 Subject: [PATCH] LibWasm: Store function references' source module in RefPtr to const --- Libraries/LibWasm/AbstractMachine/AbstractMachine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWasm/AbstractMachine/AbstractMachine.h b/Libraries/LibWasm/AbstractMachine/AbstractMachine.h index 966aa0db0ea..5bfdabd36ea 100644 --- a/Libraries/LibWasm/AbstractMachine/AbstractMachine.h +++ b/Libraries/LibWasm/AbstractMachine/AbstractMachine.h @@ -51,7 +51,7 @@ public: }; struct Func { FunctionAddress address; - RefPtr source_module; // null if host function. + RefPtr source_module; // null if host function. }; struct Extern { ExternAddress address;