summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/CompilerKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZKA/CompilerKit')
-rw-r--r--dev/ZKA/CompilerKit/Detail.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/ZKA/CompilerKit/Detail.hxx b/dev/ZKA/CompilerKit/Detail.hxx
index 4cc25dae..fd9cf7a3 100644
--- a/dev/ZKA/CompilerKit/Detail.hxx
+++ b/dev/ZKA/CompilerKit/Detail.hxx
@@ -10,18 +10,18 @@
#include <NewKit/Defines.hxx>
#endif // ifdef __NEWOSKRNL__
-#define NEWOS_COPY_DELETE(KLASS) \
+#define ZKA_COPY_DELETE(KLASS) \
KLASS& operator=(const KLASS&) = delete; \
KLASS(const KLASS&) = delete;
-#define NEWOS_COPY_DEFAULT(KLASS) \
+#define ZKA_COPY_DEFAULT(KLASS) \
KLASS& operator=(const KLASS&) = default; \
KLASS(const KLASS&) = default;
-#define NEWOS_MOVE_DELETE(KLASS) \
+#define ZKA_MOVE_DELETE(KLASS) \
KLASS& operator=(KLASS&&) = delete; \
KLASS(KLASS&&) = delete;
-#define NEWOS_MOVE_DEFAULT(KLASS) \
+#define ZKA_MOVE_DEFAULT(KLASS) \
KLASS& operator=(KLASS&&) = default; \
KLASS(KLASS&&) = default;