From 82370fea1dead8c01018325aff24ecc51cd63e1f Mon Sep 17 00:00:00 2001 From: Reece Date: Tue, 18 Jan 2022 14:39:39 +0000 Subject: [PATCH] [*] Whoops? Disambiguate questionable if. Operator precedence shouldn't have yielded a different ast --- Source/Debug/ExceptionWatcher.Win32.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Debug/ExceptionWatcher.Win32.cpp b/Source/Debug/ExceptionWatcher.Win32.cpp index a8890fc0..ba195175 100644 --- a/Source/Debug/ExceptionWatcher.Win32.cpp +++ b/Source/Debug/ExceptionWatcher.Win32.cpp @@ -228,8 +228,8 @@ namespace Aurora::Debug if ((ExceptionInfo->ExceptionRecord->ExceptionCode == EH_EXCEPTION_NUMBER) && (ExceptionInfo->ExceptionRecord->NumberParameters >= 4) && - (cxxThrow) || - (cxxThrowPure) + ((cxxThrow) || + (cxxThrowPure)) ) { HMODULE handle {};