mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Added attribution for __debugbreak()
This commit is contained in:
parent
73acd945cd
commit
ab30ab6b76
@ -78,9 +78,10 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#elif defined(__WIN32__) && defined(_MSC_VER)
|
||||
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
|
||||
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); }
|
||||
#elif defined(__WIN32__) && defined(_MSC_VER)
|
||||
// Thanks to jalfd for the following:
|
||||
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
|
||||
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); }
|
||||
#else
|
||||
inline void BreakIntoDebugger(){}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user