Commit 47ab571f authored by Fumitoshi Ukai's avatar Fumitoshi Ukai

Merge pull request #2 from tbennun/master

Fix x64/Debug build on MSVS
parents 80942e5e 7553b419
...@@ -1459,7 +1459,7 @@ static void logging_fail() { ...@@ -1459,7 +1459,7 @@ static void logging_fail() {
#if defined(_DEBUG) && defined(_MSC_VER) #if defined(_DEBUG) && defined(_MSC_VER)
// When debugging on windows, avoid the obnoxious dialog and make // When debugging on windows, avoid the obnoxious dialog and make
// it possible to continue past a LOG(FATAL) in the debugger // it possible to continue past a LOG(FATAL) in the debugger
_asm int 3 __debugbreak();
#else #else
abort(); abort();
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment