summaryrefslogtreecommitdiffhomepage
path: root/public/frameworks/CoreFoundation.fwrk/headers
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 22:29:19 -0500
committerGitHub <noreply@github.com>2025-11-29 22:29:19 -0500
commit0ea04985716deb9bff4a83e08e984513f6664b91 (patch)
treeebbb2f7b883dc57adeedba209860ffa8ab1ddc7a /public/frameworks/CoreFoundation.fwrk/headers
parente0e8acd3db4ba1d50384f26305c6cc9021652840 (diff)
parent73fa1d46dc88bb74626715b491fafd57591aeab8 (diff)
Merge pull request #95 from nekernel-org/developv0.0.8
chore: API and System Design update.
Diffstat (limited to 'public/frameworks/CoreFoundation.fwrk/headers')
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h9
1 files changed, 5 insertions, 4 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(); }