From 72b41e2f711198ad9baa846e7ba37f6e070cedb0 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 30 Jan 2026 08:10:48 +0100 Subject: chore: ddk: Fix build on nebuild for C++ DDK. chore: kernel: Tweaks and internal improvements. 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 c012e008..a9ba8b8a 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