diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 05:12:57 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 05:48:25 +0100 |
| commit | 64c23b15059649aeee6d08c7940d0ff1b56512b5 (patch) | |
| tree | c6e826d0b7f92d681563b8b381e36bf86628f8f1 /src/kernel/CFKit | |
| parent | 4d192e629a07ae457134cb0063e0136e54b01008 (diff) | |
feat: New `InitializerList` class, and `LHGetLaunchInfo` implementation on `LaunchHelpers.fwrk`.v0.0.82
fix: Fix operator!= in the `Atom` class.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/CFKit')
| -rw-r--r-- | src/kernel/CFKit/GUIDWizard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/CFKit/GUIDWizard.h b/src/kernel/CFKit/GUIDWizard.h index 8d8f6e54..901bd261 100644 --- a/src/kernel/CFKit/GUIDWizard.h +++ b/src/kernel/CFKit/GUIDWizard.h @@ -8,14 +8,14 @@ #include <CFKit/GUIDWrapper.h> #include <NeKit/Array.h> -#include <NeKit/ArrayList.h> #include <NeKit/Config.h> #include <NeKit/ErrorOr.h> +#include <NeKit/InitializerList.h> #include <NeKit/KString.h> #include <NeKit/Ref.h> #include <NeKit/Stream.h> namespace Kernel::CF::XRN::Version1 { -Ref<GUIDSequence*> cf_make_sequence(const ArrayList<UInt32>& seq); +Ref<GUIDSequence*> cf_make_sequence(const Array<UInt32, 10>& seq); ErrorOr<Ref<KString>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid); } // namespace Kernel::CF::XRN::Version1 |
