diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 18:20:04 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 18:20:04 +0200 |
| commit | bac8c9a8306e1582ef24ba68a412a29674c97775 (patch) | |
| tree | 956155581fdb44fb6c82673a5f71a00cc6f4c89c /dev/ZKA/CompilerKit | |
| parent | 73e0c81b5c8325db7aaec773fcc657f3ef50b0b8 (diff) | |
[IMP/WIP] AHCI disk driver for kernel DLL.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/CompilerKit')
| -rw-r--r-- | dev/ZKA/CompilerKit/Detail.hxx | 8 |
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; |
