diff --git a/libs/utils/src/Panic.cpp b/libs/utils/src/Panic.cpp index 1b8921ac068b..e0aec064faa1 100644 --- a/libs/utils/src/Panic.cpp +++ b/libs/utils/src/Panic.cpp @@ -43,7 +43,7 @@ class UserPanicHandler { struct CallBack { Panic::PanicHandlerCallback handler = nullptr; void* user = nullptr; - void call(Panic const& panic) const noexcept { + void call(Panic const& panic) const { if (UTILS_UNLIKELY(handler)) { handler(user, panic); } @@ -64,7 +64,7 @@ class UserPanicHandler { return data; } - void call(Panic const& panic) const noexcept { + void call(Panic const& panic) const { getCallback().call(panic); }