summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/New+Delete.cxx2
-rw-r--r--Private/Source/NewFS+Journal.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Private/Source/New+Delete.cxx b/Private/Source/New+Delete.cxx
index 1178630b..a42628fe 100644
--- a/Private/Source/New+Delete.cxx
+++ b/Private/Source/New+Delete.cxx
@@ -34,7 +34,7 @@ void operator delete(void* ptr) {
void operator delete(void* ptr, size_t sz) {
if (ptr == nullptr) return;
- HCORE_UNUSED(sz);
+ NEWOS_UNUSED(sz);
NewOS::ke_delete_ke_heap(ptr);
}
diff --git a/Private/Source/NewFS+Journal.cxx b/Private/Source/NewFS+Journal.cxx
index d6315603..ce04785e 100644
--- a/Private/Source/NewFS+Journal.cxx
+++ b/Private/Source/NewFS+Journal.cxx
@@ -38,7 +38,7 @@ class NewFSJournalRunner final {
if (fUnloadRoutine) fUnloadRoutine(this);
}
- HCORE_COPY_DEFAULT(NewFSJournalRunner);
+ NEWOS_COPY_DEFAULT(NewFSJournalRunner);
public:
Boolean Run(const Int32& operation, VoidPtr classPtr) {