From a1e5e9ffa2cfe112def5ac6e2415a604dd991de6 Mon Sep 17 00:00:00 2001 From: ctt Date: Mon, 28 Mar 2011 19:37:18 -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 2e6970dc..306d490a 100644 --- a/internal/catch_debugger.hpp +++ b/internal/catch_debugger.hpp @@ -96,6 +96,7 @@ } #else inline void BreakIntoDebugger(){} + inline bool isDebuggerActive() { return false; } #endif inline void writeToDebugConsole( const std::string& text )