From e8f7d7a96c12981ef6d0e3b4a21e663449290a30 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 23 Feb 2026 12:23:12 +0100 Subject: feat: kernel: Update copyright year for release prep. Signed-off-by: Amlal El Mahrouss --- src/kernel/NeKit/TOML.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/kernel/NeKit') diff --git a/src/kernel/NeKit/TOML.h b/src/kernel/NeKit/TOML.h index 62602837..1cdf1ba8 100644 --- a/src/kernel/NeKit/TOML.h +++ b/src/kernel/NeKit/TOML.h @@ -1,4 +1,4 @@ -// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/nekernel-org/nekernel @@ -9,6 +9,7 @@ #include namespace Kernel { + /// \brief TOML Object Handle class TOMLObject final { public: @@ -18,10 +19,11 @@ class TOMLObject final { STATIC TOMLObject kNull; private: - Bool fUndefined{YES}; // is this instance undefined? - KString fKey; - KString fValue; + Bool mUndefined{YES}; // is this instance undefined? + KString mKey; + KString mValue; }; + } // namespace Kernel -#endif \ No newline at end of file +#endif -- cgit v1.2.3