From 7553b4193d856b4ba4e74cf064a5a70eb6a87cdd Mon Sep 17 00:00:00 2001 From: tbennun Date: Fri, 13 Mar 2015 07:56:59 +0200 Subject: Fix x64/Debug build on MSVS --- src/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3