From 4d43cae9832242be97f106855b0593affdc17d6d Mon Sep 17 00:00:00 2001 From: ctt Date: Mon, 28 Mar 2011 19:29:23 -0700 Subject: [PATCH] Added isDebuggerActive for non Windows and Mac platforms. --- internal/catch_debugger.hpp | 1 + 1 file changed, 1 insertion(+) 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 )