mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
builtin: ignore C++ 0xE06D7363 exception errors on windows (#14225)
This commit is contained in:
parent
995485c649
commit
872f739396
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user