diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-09-22 13:28:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-22 23:28:58 +0300 |
| commit | f26fc0a26c64810dbd28e5d5c8f32df947d24721 (patch) | |
| tree | 825458058f5f35037a3165cb6325a397e4f1b41c /include/JSystem/JKernel | |
| parent | 8904cee4121e76f5e4b363bdfd457fbd1165fa97 (diff) | |
JKRHeap void state_register (#1941)
Diffstat (limited to 'include/JSystem/JKernel')
| -rw-r--r-- | include/JSystem/JKernel/JKRExpHeap.h | 2 | ||||
| -rw-r--r-- | include/JSystem/JKernel/JKRHeap.h | 2 | ||||
| -rw-r--r-- | include/JSystem/JKernel/JKRSolidHeap.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/JSystem/JKernel/JKRExpHeap.h b/include/JSystem/JKernel/JKRExpHeap.h index 3d566c03ca..cf90a526d0 100644 --- a/include/JSystem/JKernel/JKRExpHeap.h +++ b/include/JSystem/JKernel/JKRExpHeap.h @@ -84,7 +84,7 @@ public: /* vt[18] */ virtual s32 do_getTotalFreeSize(); /* override */ /* vt[19] */ virtual s32 do_changeGroupID(u8 newGroupID); /* override */ /* vt[20] */ virtual u8 do_getCurrentGroupId(); /* override */ - /* vt[21] */ virtual u32 state_register(JKRHeap::TState* p, u32 id) const; /* override */ + /* vt[21] */ virtual void state_register(JKRHeap::TState* p, u32 id) const; /* override */ /* vt[22] */ virtual bool state_compare(JKRHeap::TState const& r1, JKRHeap::TState const& r2) const; /* override */ diff --git a/include/JSystem/JKernel/JKRHeap.h b/include/JSystem/JKernel/JKRHeap.h index 2a323fcbe7..dcc75cb49f 100644 --- a/include/JSystem/JKernel/JKRHeap.h +++ b/include/JSystem/JKernel/JKRHeap.h @@ -76,7 +76,7 @@ public: /* vt[18] */ virtual s32 do_getTotalFreeSize() = 0; /* vt[19] */ virtual s32 do_changeGroupID(u8 newGroupID); /* vt[20] */ virtual u8 do_getCurrentGroupId(); - /* vt[21] */ virtual u32 state_register(JKRHeap::TState* p, u32 id) const; + /* vt[21] */ virtual void state_register(JKRHeap::TState* p, u32 id) const; /* vt[22] */ virtual bool state_compare(JKRHeap::TState const& r1, JKRHeap::TState const& r2) const; /* vt[23] */ virtual void state_dump(JKRHeap::TState const& p) const; diff --git a/include/JSystem/JKernel/JKRSolidHeap.h b/include/JSystem/JKernel/JKRSolidHeap.h index 62ccedc0c3..7a72e6eb86 100644 --- a/include/JSystem/JKernel/JKRSolidHeap.h +++ b/include/JSystem/JKernel/JKRSolidHeap.h @@ -39,7 +39,7 @@ public: /* vt[17] */ virtual void* do_getMaxFreeBlock(void); /* override */ /* vt[18] */ virtual s32 do_getTotalFreeSize(void); /* override */ - /* vt[21] */ virtual u32 state_register(JKRHeap::TState*, u32) const; /* override */ + /* vt[21] */ virtual void state_register(JKRHeap::TState*, u32) const; /* override */ /* vt[22] */ virtual bool state_compare(JKRHeap::TState const&, JKRHeap::TState const&) const; /* override */ |
