summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Sources')
-rw-r--r--Kernel/Sources/HError.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/Kernel/Sources/HError.cxx b/Kernel/Sources/HError.cxx
index 0df3ea6d..e9a7ad0c 100644
--- a/Kernel/Sources/HError.cxx
+++ b/Kernel/Sources/HError.cxx
@@ -21,12 +21,14 @@ namespace Kernel
ke_stop(RUNTIME_CHECK_BAD_BEHAVIOR);
}
- return false;
+ return true;
}
- Void err_bug_check_raise(void) noexcept
+ /// @brief Tells if we should raise a bug check not.
+ /// @param void
+ /// @return void
+ Void err_bug_check_raise(Void) noexcept
{
- if (!cRaise)
- cRaise = true;
+ cRaise = true;
}
} // namespace Kernel