diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-30 06:55:35 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-30 06:55:35 +0100 |
| commit | 8600ffcc1ddfc861e761baf2682490061a55cca8 (patch) | |
| tree | c51f0b4ce9fa8565c683be7209890c21ab09a99a /dev/ZKAKit/NewKit/Array.h | |
| parent | 708400a70921055b06013f9b149449be64a7d585 (diff) | |
FIX: Scheduler should always check for a valid image, even for DLLs.
FIX: Fix ZBA modules btb files.
FIX: Don't put while statement on page allocation.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/NewKit/Array.h')
| -rw-r--r-- | dev/ZKAKit/NewKit/Array.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/dev/ZKAKit/NewKit/Array.h b/dev/ZKAKit/NewKit/Array.h index 9c143bdd..6caa5b2d 100644 --- a/dev/ZKAKit/NewKit/Array.h +++ b/dev/ZKAKit/NewKit/Array.h @@ -16,15 +16,7 @@ namespace Kernel class Array final { public: - explicit Array() - { - for (SizeT i = 0; i < N; i++) - { - if (!fArray[i]) - fArray[i] = T(); - } - } - + explicit Array() = default; ~Array() = default; Array& operator=(const Array&) = default; |
