From 0e05e9fd34bd036e9043f20939c53edf967465ce Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 25 Jan 2026 03:07:52 +0100 Subject: feat: CF: Add alias for CFDictionary (CFDict). fix: kernel: CodeMgr improvements and fixes. Signed-off-by: Amlal El Mahrouss --- src/kernel/NeKit/Ref.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/kernel/NeKit/Ref.h') diff --git a/src/kernel/NeKit/Ref.h b/src/kernel/NeKit/Ref.h index 2c669611..42e6d4ce 100644 --- a/src/kernel/NeKit/Ref.h +++ b/src/kernel/NeKit/Ref.h @@ -13,9 +13,8 @@ #include namespace Kernel { -/// =========================================================== /// -/// @brief Reference wrapper class. /// -/// =========================================================== /// + +/// @brief Reference wrapper class. template class Ref final { public: @@ -67,6 +66,7 @@ class Ref final { Type fClass; }; +/// @brief Non Nullable Reference class. template class NonNullRef final { public: @@ -93,6 +93,7 @@ class NonNullRef final { using RefAny = Ref; using NonNullRefAny = NonNullRef; + } // namespace Kernel #endif // ifndef _NEKIT_REF_H_ -- cgit v1.2.3