summaryrefslogtreecommitdiffhomepage
path: root/Private/FSKit
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/FSKit
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/FSKit')
-rw-r--r--Private/FSKit/IndexableProperty.hxx2
-rw-r--r--Private/FSKit/NewFS.hxx2
-rw-r--r--Private/FSKit/NewFSIteratorInterface.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/Private/FSKit/IndexableProperty.hxx b/Private/FSKit/IndexableProperty.hxx
index 1a7925fe..64529faa 100644
--- a/Private/FSKit/IndexableProperty.hxx
+++ b/Private/FSKit/IndexableProperty.hxx
@@ -27,7 +27,7 @@ class IndexableProperty final : public Property {
: Property(StringBuilder::Construct("IndexableProperty").Leak().Leak()) {}
~IndexableProperty() override = default;
- HCORE_COPY_DEFAULT(IndexableProperty);
+ NEWOS_COPY_DEFAULT(IndexableProperty);
public:
IndexProperty& LeakProperty() noexcept;
diff --git a/Private/FSKit/NewFS.hxx b/Private/FSKit/NewFS.hxx
index 10e5e1e7..6c4be37f 100644
--- a/Private/FSKit/NewFS.hxx
+++ b/Private/FSKit/NewFS.hxx
@@ -168,7 +168,7 @@ class NewFSParser {
virtual ~NewFSParser() = default;
public:
- HCORE_COPY_DEFAULT(NewFSParser);
+ NEWOS_COPY_DEFAULT(NewFSParser);
public:
virtual _Output NewFork* CreateFork(_Input NewCatalog* catalog, _Input NewFork& theFork) = 0;
diff --git a/Private/FSKit/NewFSIteratorInterface.hxx b/Private/FSKit/NewFSIteratorInterface.hxx
index 7e1d8652..d0d35c76 100644
--- a/Private/FSKit/NewFSIteratorInterface.hxx
+++ b/Private/FSKit/NewFSIteratorInterface.hxx
@@ -26,7 +26,7 @@ class NewFSIteratorInterface {
virtual ~NewFSIteratorInterface() = default;
public:
- HCORE_COPY_DEFAULT(NewFSIteratorInterface);
+ NEWOS_COPY_DEFAULT(NewFSIteratorInterface);
public:
void Append(IndexableProperty& indexProp) { fProps.Add(indexProp); }