Skip to content

Commit 03d747c

Browse files
committed
Let exceptions propagate in Windows since we have crash dumps.
1 parent 66f0713 commit 03d747c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/Cpp/PanicDump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void panic_dump(const char* location, const char* message){
3232

3333

3434
void run_with_catch(const char* location, std::function<void()>&& lambda){
35-
#if 0
35+
#ifdef _WIN32
3636
lambda();
3737
#else
3838
try{

0 commit comments

Comments
 (0)