From 5d2ee141d1961bb8a72646ce268b3fdf1436e36a Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 3 Jun 2025 23:45:06 +1200 Subject: [PATCH] 'Generic Commit' --- ipdemo/src/assert.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipdemo/src/assert.hpp b/ipdemo/src/assert.hpp index ea73843..b35d70f 100644 --- a/ipdemo/src/assert.hpp +++ b/ipdemo/src/assert.hpp @@ -7,7 +7,7 @@ #include #include -[[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()