mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 11:39:43 +00:00
LibWasm: Store function references' source module in RefPtr to const
This commit is contained in:
parent
1a9690897c
commit
2839a631ec
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ public:
|
||||||
};
|
};
|
||||||
struct Func {
|
struct Func {
|
||||||
FunctionAddress address;
|
FunctionAddress address;
|
||||||
RefPtr<Module> source_module; // null if host function.
|
RefPtr<Module const> source_module; // null if host function.
|
||||||
};
|
};
|
||||||
struct Extern {
|
struct Extern {
|
||||||
ExternAddress address;
|
ExternAddress address;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue