From e0cdc715aa28c46938f836a70324734ec6b3766d Mon Sep 17 00:00:00 2001 From: DustyBagel <150477174+DustyBagel@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:37:11 -0500 Subject: [PATCH] Fix accidental change to debug.h --- src/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.h b/src/debug.h index 3a16c9dde..80497f2b3 100644 --- a/src/debug.h +++ b/src/debug.h @@ -78,7 +78,7 @@ void debug_set_exception_handler(); These should be put into every thread */ -#if CATCH_UNHANDLED_EXCEPTIONS == 0 +#if CATCH_UNHANDLED_EXCEPTIONS == 1 #define BEGIN_DEBUG_EXCEPTION_HANDLER try { #define END_DEBUG_EXCEPTION_HANDLER \ } catch (std::exception &e) { \