summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Macros.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:47:53 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:47:53 +0100
commitb0c5f2a2683657182f5ce3dc3bcbf252164b0077 (patch)
treea2f43f8d5943ce4825a0f1eb4e921d30e8e78eb9 /dev/CompilerKit/Macros.h
parente272dd8e4d2437423b5140ad76cb690f4e182d76 (diff)
feat! compiler_kit & debugger_kit: breaking changes, big name refactors on the source code have been done.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/Macros.h')
-rw-r--r--dev/CompilerKit/Macros.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/dev/CompilerKit/Macros.h b/dev/CompilerKit/Macros.h
index 844bc23..ee42be5 100644
--- a/dev/CompilerKit/Macros.h
+++ b/dev/CompilerKit/Macros.h
@@ -9,25 +9,25 @@
#ifndef _MACROS_H_
#define _MACROS_H_
-#define LIBCOMPILER_COPY_DELETE(KLASS) \
+#define NECTI_COPY_DELETE(KLASS) \
KLASS& operator=(const KLASS&) = delete; \
KLASS(const KLASS&) = delete;
-#define LIBCOMPILER_COPY_DEFAULT(KLASS) \
+#define NECTI_COPY_DEFAULT(KLASS) \
KLASS& operator=(const KLASS&) = default; \
KLASS(const KLASS&) = default;
-#define LIBCOMPILER_MOVE_DELETE(KLASS) \
+#define NECTI_MOVE_DELETE(KLASS) \
KLASS& operator=(KLASS&&) = delete; \
KLASS(KLASS&&) = delete;
-#define LIBCOMPILER_MOVE_DEFAULT(KLASS) \
+#define NECTI_MOVE_DEFAULT(KLASS) \
KLASS& operator=(KLASS&&) = default; \
KLASS(KLASS&&) = default;
/// @note xxxx is the error placeholder, in hexadecimal.
-#define LIBCOMPILER_ERROR_PREFIX_CXX "CXXxxxx"
-#define LIBCOMPILER_ERROR_PREFIX_CL "CLxxxx"
-#define LIBCOMPILER_ERROR_PREFIX_ASM "ASMxxxx"
+#define NECTI_ERROR_PREFIX_CXX "CXXxxxx"
+#define NECTI_ERROR_PREFIX_CL "CLxxxx"
+#define NECTI_ERROR_PREFIX_ASM "ASMxxxx"
#endif /* ifndef _MACROS_H_ */