diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-22 15:33:46 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-22 15:33:46 +0100 |
| commit | 999dc83cac37efc109da4d562a8a75d1f6fc7c86 (patch) | |
| tree | e240f01cb9a00f67e0b94a8e7d139c2b41b294ec /include/CompilerKit/Detail | |
| parent | 7fd421a88005d9a3636284c7a15628111fdf41c3 (diff) | |
feat: CompilerKit: Refactor NECTI_ symbols to NECTAR_.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Detail')
| -rw-r--r-- | include/CompilerKit/Detail/PreConfig.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/CompilerKit/Detail/PreConfig.h b/include/CompilerKit/Detail/PreConfig.h index dc96377..b70bb6d 100644 --- a/include/CompilerKit/Detail/PreConfig.h +++ b/include/CompilerKit/Detail/PreConfig.h @@ -95,25 +95,25 @@ #define kAsmFileExtsMax (7U) -#define NECTI_MODULE(name) extern "C" int name(int argc, char** argv) +#define NECTAR_MODULE(name) extern "C" int name(int argc, char** argv) #ifdef MSVC #pragma scalar_storage_order big - endian #endif // ifdef MSVC -#define NECTI_COPY_DELETE(KLASS) \ +#define NECTAR_COPY_DELETE(KLASS) \ KLASS& operator=(const KLASS&) = delete; \ KLASS(const KLASS&) = delete; -#define NECTI_COPY_DEFAULT(KLASS) \ +#define NECTAR_COPY_DEFAULT(KLASS) \ KLASS& operator=(const KLASS&) = default; \ KLASS(const KLASS&) = default; -#define NECTI_MOVE_DELETE(KLASS) \ +#define NECTAR_MOVE_DELETE(KLASS) \ KLASS& operator=(KLASS&&) = delete; \ KLASS(KLASS&&) = delete; -#define NECTI_MOVE_DEFAULT(KLASS) \ +#define NECTAR_MOVE_DEFAULT(KLASS) \ KLASS& operator=(KLASS&&) = default; \ KLASS(KLASS&&) = default; |
