summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/Detail
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:33:46 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:33:46 +0100
commit999dc83cac37efc109da4d562a8a75d1f6fc7c86 (patch)
treee240f01cb9a00f67e0b94a8e7d139c2b41b294ec /include/CompilerKit/Detail
parent7fd421a88005d9a3636284c7a15628111fdf41c3 (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.h10
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;