summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/utils
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/utils
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/utils')
-rw-r--r--dev/CompilerKit/utils/CompilerUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/CompilerKit/utils/CompilerUtils.h b/dev/CompilerKit/utils/CompilerUtils.h
index da35b2b..bf48b79 100644
--- a/dev/CompilerKit/utils/CompilerUtils.h
+++ b/dev/CompilerKit/utils/CompilerUtils.h
@@ -46,7 +46,7 @@ inline void print_error(std::string reason, std::string file) noexcept {
kStdErr << reason << kBlank << std::endl;
- if (kAcceptableErrors > kErrorLimit) std::exit(LIBCOMPILER_EXEC_ERROR);
+ if (kAcceptableErrors > kErrorLimit) std::exit(NECTI_EXEC_ERROR);
++kAcceptableErrors;
}
@@ -111,6 +111,6 @@ inline void drvi_crash_handler(std::int32_t id) {
std::cout << std::endl;
- std::exit(LIBCOMPILER_EXEC_ERROR);
+ std::exit(NECTI_EXEC_ERROR);
}
} // namespace Detail