mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-23 15:23:44 +02:00
Remove unused next_func_ptr
field of binding_base
This commit is contained in:
parent
1f136cd6ff
commit
e3cbed2fb3
2 changed files with 1 additions and 2 deletions
|
@ -40,7 +40,7 @@ binding_base::stack_frame::~stack_frame() {
|
|||
}
|
||||
}
|
||||
|
||||
binding_base::binding_base(std::shared_ptr<struct w2c_ruby> m) : next_func_ptr(-1), _instance(m) {}
|
||||
binding_base::binding_base(std::shared_ptr<struct w2c_ruby> m) : _instance(m) {}
|
||||
|
||||
binding_base::~binding_base() {
|
||||
// Destroy all stack frames in order from top to bottom to enforce a portable, compiler-independent ordering of stack frame destruction
|
||||
|
|
|
@ -221,7 +221,6 @@ namespace mkxp_sandbox {
|
|||
|
||||
std::shared_ptr<struct w2c_ruby> _instance;
|
||||
std::unordered_map<key_t, struct fiber, boost::hash<key_t>> fibers;
|
||||
wasm_ptr_t next_func_ptr;
|
||||
wasm_ptr_t stack_ptr;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Reference in a new issue