Skip to content

Commit

Permalink
Merge pull request google#2 from tbennun/master
Browse files Browse the repository at this point in the history
Fix x64/Debug build on MSVS
  • Loading branch information
ukai committed Mar 18, 2015
2 parents 553393b + a68d9a0 commit f0b2f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ 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
_asm int 3
__debugbreak();
#else
abort();
#endif
Expand Down

0 comments on commit f0b2f00

Please sign in to comment.