From 735817374eab95fe5bdd4067f203426f65a228bc Mon Sep 17 00:00:00 2001 From: Wertzui123 <46199283+Wertzui123@users.noreply.github.com> Date: Fri, 29 Apr 2022 13:55:29 +0200 Subject: [PATCH] builtin: ignore C++ 0xE06D7363 exception errors on windows (#14225) --- vlib/builtin/builtin_windows.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/builtin/builtin_windows.c.v b/vlib/builtin/builtin_windows.c.v index 22fd65afd8..cd52408a2e 100644 --- a/vlib/builtin/builtin_windows.c.v +++ b/vlib/builtin/builtin_windows.c.v @@ -243,7 +243,7 @@ fn unhandled_exception_handler(e &ExceptionPointers) int { match e.exception_record.code { // These are 'used' by the backtrace printer // so we dont want to catch them... - 0x4001000A, 0x40010006 { + 0x4001000A, 0x40010006, 0xE06D7363 { return 0 } else {