diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-01-15 16:01:16 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-01-15 16:01:16 +0100 |
| commit | f98c5fc917bf06c408be24e98f659d606f8f5cf3 (patch) | |
| tree | ed9f599e1637f9135d4e67a9e81641f405ba91f9 /arch/x86_64/pre/src/exception_handling/assert.cpp | |
| parent | 1799e1ba1b825eda639141b0597a1783576b69da (diff) | |
| download | kernel-f98c5fc917bf06c408be24e98f659d606f8f5cf3.tar.xz kernel-f98c5fc917bf06c408be24e98f659d606f8f5cf3.zip | |
x86_64: remove obsolete components
Diffstat (limited to 'arch/x86_64/pre/src/exception_handling/assert.cpp')
| -rw-r--r-- | arch/x86_64/pre/src/exception_handling/assert.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/x86_64/pre/src/exception_handling/assert.cpp b/arch/x86_64/pre/src/exception_handling/assert.cpp deleted file mode 100644 index b2963de..0000000 --- a/arch/x86_64/pre/src/exception_handling/assert.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "arch/exception_handling/assert.hpp" - -#include "arch/exception_handling/panic.hpp" - -namespace teachos::arch::exception_handling -{ - auto assert(bool condition, char const * message) -> void - { - if (condition) - { - return; - } - panic("Assertion Violation: ", message); - } -} // namespace teachos::arch::exception_handling |
