summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/Config.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-12 18:22:35 +0100
committerGitHub <noreply@github.com>2026-03-12 18:22:35 +0100
commit9f79840a489aa65a69350fd48bf83d118f56ccb3 (patch)
tree6d332e82cc9c197cb7c5e0aff958b8bdc38009bf /src/kernel/NeKit/Config.h
parent6498165c295fab8352d8bcb37095ef81190dda20 (diff)
parent578e905d123d1ae48ad6690cddd5247b83cdccae (diff)
Merge pull request #138 from ne-foss-org/atom-improvementsHEADdevelop
[FEAT] CFAtom & Kernel::Atom improvements, doc TypeAtomic.
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 f84c939a..02189b47 100644
--- a/src/kernel/NeKit/Config.h
+++ b/src/kernel/NeKit/Config.h
@@ -17,7 +17,7 @@
#define NE_ICODEC \
final: \
- public \
+ public \
::Kernel::ICodec
/// @brief The **NeKernel** namespace.
@@ -113,12 +113,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*