'Generic Commit'
All checks were successful
dropshell-build / build (push) Successful in 17s

This commit is contained in:
Your Name 2025-06-03 23:45:06 +12:00
parent b68f5e6f8f
commit 5d2ee141d1

View File

@ -7,7 +7,7 @@
#include <libunwind.h>
#include <dlfcn.h>
[[noreturn]] void print_stacktrace() {
void print_stacktrace() {
unw_cursor_t cursor;
unw_context_t context;
unw_word_t offset, pc;
@ -47,7 +47,7 @@
}
}
[[noreturn]] void assert_failed(
void assert_failed(
bool condition,
std::string_view message,
std::source_location location = std::source_location::current()