summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-03-18 14:54:40 +0900
committerFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-03-18 14:54:40 +0900
commit47ab571f38e8c6266c260010ac631f888e302e6d (patch)
treebe876d830db0eacd8caf070b76fdc73dd7b88cb3 /src
parent80942e5ea2c82426030481dcff175428db019bcf (diff)
parent7553b4193d856b4ba4e74cf064a5a70eb6a87cdd (diff)
downloadglog-47ab571f38e8c6266c260010ac631f888e302e6d.tar.gz
glog-47ab571f38e8c6266c260010ac631f888e302e6d.tar.bz2
glog-47ab571f38e8c6266c260010ac631f888e302e6d.zip
Merge pull request #2 from tbennun/master
Fix x64/Debug build on MSVS
Diffstat (limited to 'src')
-rw-r--r--src/logging.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logging.cc b/src/logging.cc
index f1f519a..2bb5f12 100644
--- a/src/logging.cc
+++ b/src/logging.cc
@@ -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