summaryrefslogtreecommitdiffhomepage
path: root/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 10:08:33 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 10:08:33 +0100
commit9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch)
tree7f1a83f69562a2725bb9cda27c31d120640d2c1c /public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
parent731758b271233b9c11052001ffc20a5a2ca1f365 (diff)
feat! breaking API changes, use header guards and libSystem fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h')
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
index fef51f21..e00260ec 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
@@ -4,7 +4,8 @@
======================================== */
-#pragma once
+#ifndef HEADERS_DICTIONARY_H
+#define HEADERS_DICTIONARY_H
#include <libSystem/SystemKit/System.h>
@@ -38,3 +39,5 @@ inline auto make_dict() {
return CFDictionary<KeyType, ValueType>{};
}
} // namespace CF
+
+#endif