summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/MutableArray.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-28 13:05:28 +0100
commit84cc6ff6f43b48383248282743efc514946db641 (patch)
treefa7f9099b87e235ba122d17b6a3b39234cd39883 /Private/NewKit/MutableArray.hpp
parent3d798c5fc738768493df925d1f5d72256f2dec4e (diff)
Kernel: :boom: breaking changes, Update API and the HCORE based
macros, rename HCore to NewOS. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewKit/MutableArray.hpp')
-rw-r--r--Private/NewKit/MutableArray.hpp8
1 files changed, 4 insertions, 4 deletions
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 <typename T> class MutableArray;
@@ -142,7 +142,7 @@ template <typename T, T _PlaceHolderValue> class NullableMutableArray
MutableLinkedList<T> *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<voidPtr, nullptr>
MutableLinkedList<T> *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