summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/Array.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-29 20:20:57 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-29 20:20:57 +0200
commit77423c4fa55a060c5cf710bbe5c4de02fce43e97 (patch)
tree9fd6308619a7ee4deca80c05d44fea2566d99da4 /Private/NewKit/Array.hpp
parenta21859d722597e4eb1216a4a48d08d8f2659b514 (diff)
MHR-18: Fixing last bugs...
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewKit/Array.hpp')
-rw-r--r--Private/NewKit/Array.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/NewKit/Array.hpp b/Private/NewKit/Array.hpp
index 6724d8a9..68ca9bfc 100644
--- a/Private/NewKit/Array.hpp
+++ b/Private/NewKit/Array.hpp
@@ -11,7 +11,7 @@
namespace NewOS
{
-template <typename T, Size N>
+template <typename T, Size N>
class Array final
{
public:
@@ -26,7 +26,7 @@ public:
if (At > N)
return {};
- kcout << "Returning element\r\n";
+ kcout << "Returning element\r";
return ErrorOr<T>(fArray[At]);
}
@@ -65,6 +65,6 @@ public:
private:
T fArray[N];
-
+
};
} // namespace NewOS