diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-02 10:06:13 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-02 10:06:13 +0200 |
| commit | b3888ff9e2c18da6b73a57f453f7ad36fea61b7b (patch) | |
| tree | 1c2c6da3f8fba030222f7505f73a104eaf9e17cf /dev/ZKA/CompilerKit | |
| parent | 9b7082353e9f7bd4d3ae077959de553f437316db (diff) | |
[ META ] Update formating.
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 fd9cf7a3..d0b8d153 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 ZKA_COPY_DELETE(KLASS) \ +#define ZKA_COPY_DELETE(KLASS) \ KLASS& operator=(const KLASS&) = delete; \ KLASS(const KLASS&) = delete; -#define ZKA_COPY_DEFAULT(KLASS) \ +#define ZKA_COPY_DEFAULT(KLASS) \ KLASS& operator=(const KLASS&) = default; \ KLASS(const KLASS&) = default; -#define ZKA_MOVE_DELETE(KLASS) \ +#define ZKA_MOVE_DELETE(KLASS) \ KLASS& operator=(KLASS&&) = delete; \ KLASS(KLASS&&) = delete; -#define ZKA_MOVE_DEFAULT(KLASS) \ +#define ZKA_MOVE_DEFAULT(KLASS) \ KLASS& operator=(KLASS&&) = default; \ KLASS(KLASS&&) = default; |
