diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:22:11 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:22:11 -0500 |
| commit | 73fa1d46dc88bb74626715b491fafd57591aeab8 (patch) | |
| tree | ebbb2f7b883dc57adeedba209860ffa8ab1ddc7a /public | |
| parent | b456c928fecf78157270b052e441a427f06afdda (diff) | |
chore: API and System Design update.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public')
3 files changed, 7 insertions, 6 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h index 75b6bb27..fef51f21 100644 --- a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h +++ b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h @@ -18,13 +18,14 @@ class CFDictionary final { CFDictionary& operator=(const CFDictionary&) = default; CFDictionary(const CFDictionary&) = default; - Value& operator[](Key& at) { - return this->Find(at); - } + Value& operator[](Key& at) { return this->Find(at); } Bool Empty() { return this->fCount > 0; } - Bool Find(Key& key) { NE_UNUSED(key); return false; } + Bool Find(Key& key) { + NE_UNUSED(key); + return false; + } operator bool() { return !this->Empty(); } diff --git a/public/frameworks/KernelTest.fwrk/headers/Foundation.h b/public/frameworks/KernelTest.fwrk/headers/Foundation.h index 8ff956a7..3bc7225d 100644 --- a/public/frameworks/KernelTest.fwrk/headers/Foundation.h +++ b/public/frameworks/KernelTest.fwrk/headers/Foundation.h @@ -6,8 +6,8 @@ #pragma once -#include <libSystem/SystemKit/System.h> #include <libSystem/SystemKit/Err.h> +#include <libSystem/SystemKit/System.h> #include <CoreFoundation.fwrk/headers/Object.h> #include <CoreFoundation.fwrk/headers/String.h> diff --git a/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h b/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h index 6cfddae2..39fdafbb 100644 --- a/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h +++ b/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h @@ -15,7 +15,7 @@ class KTSourceLocation; /// ================================================================================ class KTSourceLocation final CF_OBJECT { public: - KTSourceLocation() = delete; + KTSourceLocation() = delete; ~KTSourceLocation() override = default; LIBSYS_COPY_DELETE(KTSourceLocation); |
