Skip to content

Commit c79b388

Browse files
authored
Fix ifdef
1 parent 8132697 commit c79b388

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Common/Cpp/PanicDump.cpp

Lines changed: 2 additions & 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 1
35+
#if 0
3636
lambda();
3737
#else
3838
try{
@@ -59,3 +59,4 @@ void run_with_catch(const char* location, std::function<void()>&& lambda){
5959

6060

6161
}
62+

0 commit comments

Comments
 (0)