diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-21 15:19:01 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-21 15:19:01 +0200 |
| commit | b6ce3d25357b4e01daf212a955a6093133bc2fe4 (patch) | |
| tree | ffbcf391bf186ee0c75dc982cd36da070a5159cb /dev/kernel/NeKit/Json.h | |
| parent | 738833a0470ce93b7809ca4bdea253677f27fb57 (diff) | |
feat: Reworked `hefsi_hash_64` to follow the codebase's conventions.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/NeKit/Json.h')
| -rw-r--r-- | dev/kernel/NeKit/Json.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/kernel/NeKit/Json.h b/dev/kernel/NeKit/Json.h index ebd4acf9..24357dd7 100644 --- a/dev/kernel/NeKit/Json.h +++ b/dev/kernel/NeKit/Json.h @@ -25,7 +25,7 @@ namespace Kernel { class Json final { public: explicit Json() { - auto len = kJSONMaxLen; + auto len = kJSONMaxLen; BasicKString<> key = KString(len); key += kJSONNullObj; @@ -42,7 +42,7 @@ class Json final { Bool& IsUndefined() { return fUndefined; } private: - Bool fUndefined; // is this instance undefined? + Bool fUndefined; // is this instance undefined? BasicKString<> fKey; BasicKString<> fValue; |
