summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/Array.hpp
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-04-30 06:17:59 +0000
committerAmlal <amlalelmahrouss@icloud.com>2024-04-30 06:17:59 +0000
commit094218bcd2befe8c57d042db7a2945791f29c7a6 (patch)
tree045a19e28860280a29bb8fc218a6909343691878 /Private/NewKit/Array.hpp
parenta06c8a375f0c5f5e3613e9fe8228cebf442731ba (diff)
parentf86125cf437fb49587d588413d69646959a58541 (diff)
Merged in MHR-18 (pull request #10)
MHR-18
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