diff --git a/internal/catch_debugger.hpp b/internal/catch_debugger.hpp index 86cab81f..18ffd7cf 100644 --- a/internal/catch_debugger.hpp +++ b/internal/catch_debugger.hpp @@ -86,6 +86,7 @@ #define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); } #else inline void BreakIntoDebugger(){} + inline bool isDebuggerActive() { return false; } #endif inline void writeToDebugConsole( const std::string& text )