summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/Config.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-03 19:06:45 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-03 19:06:45 +0100
commit30ba1aab88bd8138a6b3b3e1dbb464e4e67af698 (patch)
tree906bf0c4e0bc5864224038395bfdb12e38876168 /src/kernel/NeKit/Config.h
parentdaf906b02d2ba542f407872db9f7b1da2a5b36c4 (diff)
chore: {DDK, KernelKit}: Improvements and release schedule.v0.1.31v0.1.31-develop
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/NeKit/Config.h')
-rw-r--r--src/kernel/NeKit/Config.h6
1 files changed, 3 insertions, 3 deletions
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 <class Type>
concept IsSerializable = requires() {
- {Type::kValue};
+ { Type::kValue };
};
template <class Type>
concept IsNotSerializable = requires() {
- {!Type::kValue};
+ { !Type::kValue };
};
/// @brief Encoding interface, used as a proxy to convert T to Char*