aboutsummaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-02-03 22:26:02 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-02-03 22:26:02 +0530
commitcb3c5e623a180df6f0b105418c0b25dace1d6ba8 (patch)
tree30712dc8a214f183d70e354da68303d5f0a1d274 /kernel/include
parent62aed29c0cfd9565bb50094178d9fe6b0f99dae0 (diff)
libk: remove m_prev from LibAlloc::Block
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/libk/liballoc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/include/libk/liballoc.h b/kernel/include/libk/liballoc.h
index d966fc6..ff40054 100644
--- a/kernel/include/libk/liballoc.h
+++ b/kernel/include/libk/liballoc.h
@@ -29,8 +29,6 @@ class Block
{
public:
Block *m_next;
- Block *m_prev;
-
uint32_t m_size;
public: