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/Config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/NeKit/Config.h') diff --git a/src/kernel/NeKit/Config.h b/src/kernel/NeKit/Config.h index a9ba8b8a..c012e008 100644 --- a/src/kernel/NeKit/Config.h +++ b/src/kernel/NeKit/Config.h @@ -16,7 +16,7 @@ #define NE_ICODEC \ final: \ - public \ + public \ ::Kernel::ICodec /// @brief The **NeKernel** namespace. @@ -112,12 +112,12 @@ inline Args&& move(Args&& arg) { template concept IsSerializable = requires() { - {Type::kValue}; + { Type::kValue }; }; template concept IsNotSerializable = requires() { - {!Type::kValue}; + { !Type::kValue }; }; /// @brief Encoding interface, used as a proxy to convert T to Char* -- cgit v1.2.3