From 84cc6ff6f43b48383248282743efc514946db641 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 28 Mar 2024 13:05:28 +0100 Subject: Kernel: :boom: breaking changes, Update API and the HCORE based macros, rename HCore to NewOS. Signed-off-by: Amlal El Mahrouss --- Private/NewKit/MutableArray.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Private/NewKit/MutableArray.hpp') diff --git a/Private/NewKit/MutableArray.hpp b/Private/NewKit/MutableArray.hpp index 24bb06d4..1be94548 100644 --- a/Private/NewKit/MutableArray.hpp +++ b/Private/NewKit/MutableArray.hpp @@ -44,7 +44,7 @@ // FIXME: this is a shitty algorithm, which is consumer hungry. // Remove and occurences of that, and remove that class. -namespace HCore +namespace NewOS { template class MutableArray; @@ -142,7 +142,7 @@ template class NullableMutableArray MutableLinkedList *m_FirstNode{nullptr}; /* Number of nodes inside of this dynamic array. */ - HCore::SizeT m_NodeCount{0}; + NewOS::SizeT m_NodeCount{0}; private: // don't remove that @@ -217,6 +217,6 @@ class MutableArray : public NullableMutableArray MutableLinkedList *m_FirstNode{nullptr}; /* Number of nodes inside of this dynamic array. */ - HCore::SizeT m_NodeCount{0}; + NewOS::SizeT m_NodeCount{0}; }; -} // namespace HCore +} // namespace NewOS -- cgit v1.2.3