summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/NewKit/Array.h
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2024-10-30 06:55:35 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2024-10-30 06:55:35 +0100
commit8600ffcc1ddfc861e761baf2682490061a55cca8 (patch)
treec51f0b4ce9fa8565c683be7209890c21ab09a99a /dev/ZKAKit/NewKit/Array.h
parent708400a70921055b06013f9b149449be64a7d585 (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.h10
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;