summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/Config.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-23 19:55:05 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-23 19:55:05 +0100
commit187cf4d1af81ba45af85dfe4443574c6e0e0f98a (patch)
treef8cbbddf713ad2073e0efdb3e19006f22b18cd51 /src/kernel/NeKit/Config.h
parent3a4cb9bfcf9e91f3bd994d74af2e56f59d17688f (diff)
chore: Codebase improvements, add groundwork for #122.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/NeKit/Config.h')
-rw-r--r--src/kernel/NeKit/Config.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/NeKit/Config.h b/src/kernel/NeKit/Config.h
index 3e37fe2d..e18cae54 100644
--- a/src/kernel/NeKit/Config.h
+++ b/src/kernel/NeKit/Config.h
@@ -19,8 +19,9 @@
public \
::Kernel::ICodec
-/// @brief The **Kernel** namespace.
+/// @brief The **NeKernel** namespace.
namespace Kernel {
+
using voidPtr = void*;
using VoidPtr = void*;
using nullPtr = decltype(nullptr);
@@ -208,6 +209,7 @@ struct TrueResult final {
static constexpr bool kValue = true;
};
+
template <class Type>
struct PropertyResult final {
using ResultType = Type;
@@ -218,6 +220,7 @@ struct PropertyResult final {
static constexpr bool kValue = Type::kValue;
};
+
} // namespace Kernel
#endif