summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-05 01:59:36 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-05 02:01:15 +0200
commit21fe8d0b7d48e92ba0d45c084bf868c94bb67cd7 (patch)
tree4193f80c02ce03b2e02d6c2ef1a1a0526ea7b8fc /Private/NewKit
parenta45872967f07906297782cd04223706cfc326219 (diff)
HAL/PPC: Adding support for PowerPC, implemented rt_do_context_switch.
Refactor: Everything which starts with HCORE_ is NEWOS_ now. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewKit')
-rw-r--r--Private/NewKit/Json.hpp2
-rw-r--r--Private/NewKit/Macros.hpp2
-rw-r--r--Private/NewKit/MutableArray.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/Private/NewKit/Json.hpp b/Private/NewKit/Json.hpp
index cc8afe1a..d4514ef1 100644
--- a/Private/NewKit/Json.hpp
+++ b/Private/NewKit/Json.hpp
@@ -26,7 +26,7 @@ class JsonType final {
~JsonType() = default;
- HCORE_COPY_DEFAULT(JsonType);
+ NEWOS_COPY_DEFAULT(JsonType);
private:
StringView fKey;
diff --git a/Private/NewKit/Macros.hpp b/Private/NewKit/Macros.hpp
index 62780068..96b7548c 100644
--- a/Private/NewKit/Macros.hpp
+++ b/Private/NewKit/Macros.hpp
@@ -91,4 +91,4 @@
#endif
#define STRINGIFY(X) #X
-#define HCORE_UNUSED(X) ((void)X) \ No newline at end of file
+#define NEWOS_UNUSED(X) ((void)X) \ No newline at end of file
diff --git a/Private/NewKit/MutableArray.hpp b/Private/NewKit/MutableArray.hpp
index 1be94548..bdedb97f 100644
--- a/Private/NewKit/MutableArray.hpp
+++ b/Private/NewKit/MutableArray.hpp
@@ -157,7 +157,7 @@ class MutableArray : public NullableMutableArray<voidPtr, nullptr>
explicit MutableArray() = default;
virtual ~MutableArray() = default;
- HCORE_COPY_DEFAULT(MutableArray)
+ NEWOS_COPY_DEFAULT(MutableArray)
public:
Boolean Add(const T val)