Comment unreachable code in abort.cpp

This commit is contained in:
Jief L 2020-04-24 13:37:50 +03:00
parent 5f195c9d8a
commit 0dca81990b

View File

@ -52,8 +52,8 @@ void panic(const char* format, ...)
if ( stop_at_panic ) {
VA_LIST va;
VA_START(va, format);
panic_(format, va);
VA_END(va);
panic_(format, va); // panic doesn't return
//VA_END(va);
}else{
i_have_panicked = true;
}