Merge pull request #151 from bretthall/master

Fixed linker error when using VS2015 /MD
pull/211/head
Jeffrey Walton 2016-06-21 15:59:58 -04:00 committed by GitHub
commit 8576762836
1 changed files with 4 additions and 0 deletions

View File

@ -34,7 +34,11 @@
#else #else
#define _CRT_DEBUGGER_HOOK __crt_debugger_hook #define _CRT_DEBUGGER_HOOK __crt_debugger_hook
#endif #endif
#if _MSC_VER < 1900
extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);} extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);}
#else
extern "C" {void __cdecl _CRT_DEBUGGER_HOOK(int); }
#endif
#endif #endif
#endif #endif