aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include/arch/exception_handling/assert.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/include/arch/exception_handling/assert.hpp')
-rw-r--r--arch/x86_64/include/arch/exception_handling/assert.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/x86_64/include/arch/exception_handling/assert.hpp b/arch/x86_64/include/arch/exception_handling/assert.hpp
deleted file mode 100644
index 1286768..0000000
--- a/arch/x86_64/include/arch/exception_handling/assert.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef TEACHOS_ARCH_X86_64_EXCEPTION_HANDLING_ASSERT_HPP
-#define TEACHOS_ARCH_X86_64_EXCEPTION_HANDLING_ASSERT_HPP
-
-namespace teachos::arch::exception_handling
-{
- /**
- * @brief Assert a condition to be true, if not do not continue
- * execution of the code and print the given message to screen.
- *
- * @param condition Condition we want to be true or else halt execution.
- * @param message Message that should be printed before halting the execution if the condition is not met.
- */
- auto assert(bool condition, char const * message) -> void;
-
-} // namespace teachos::arch::exception_handling
-
-#endif // TEACHOS_ARCH_X86_64_EXCEPTION_HANDLING_ASSERT_HPP