summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/KernelCheck.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewKit/KernelCheck.hpp')
-rw-r--r--Private/NewKit/KernelCheck.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Private/NewKit/KernelCheck.hpp b/Private/NewKit/KernelCheck.hpp
index 77dc558a..c65390ad 100644
--- a/Private/NewKit/KernelCheck.hpp
+++ b/Private/NewKit/KernelCheck.hpp
@@ -9,13 +9,13 @@
#include <NewKit/Defines.hpp>
-namespace HCore {
+namespace NewOS {
void ke_runtime_check(bool bExpression, const char *file, const char *line);
}
#define MUST_PASS_COMPILER(EXPR, MSG) static_assert(EXPR, MSG)
#define __MUST_PASS(EXPR, FILE, LINE) \
- HCore::ke_runtime_check(EXPR, FILE, STRINGIFY(LINE))
+ NewOS::ke_runtime_check(EXPR, FILE, STRINGIFY(LINE))
#define MUST_PASS(EXPR) __MUST_PASS(EXPR, __FILE__, __LINE__)
#define assert(EXPR) MUST_PASS(EXPR, RUNTIME_CHECK_EXPRESSION)
@@ -36,7 +36,7 @@ enum RUNTIME_CHECK {
RUNTIME_CHECK_COUNT,
};
-namespace HCore {
+namespace NewOS {
class DumpManager final {
public:
static void Dump(void) {
@@ -45,7 +45,7 @@ class DumpManager final {
};
void ke_stop(const Int &id);
-} // namespace HCore
+} // namespace NewOS
#ifdef TRY
#undef TRY