Open GoogleCodeExporter opened 8 years ago
It's fine when I use ' __debugbreak(); ' instead of ' _asm int 3'
static void logging_fail() {
#if defined(_DEBUG) && defined(_MSC_VER)
// When debugging on windows, avoid the obnoxious dialog and make
// it possible to continue past a LOG(FATAL) in the debugger
__debugbreak();
#else
abort();
#endif
}
Original comment by sioe...@gmail.com
on 23 Nov 2012 at 1:52
why '__debugbreak()' is still not accepted?
Original comment by ich...@gmail.com
on 8 Jan 2014 at 2:18
Original issue reported on code.google.com by
sioe...@gmail.com
on 23 Nov 2012 at 1:50