diff --git a/internal/catch_debugger.hpp b/internal/catch_debugger.hpp index 5edcf5ec..60d7b129 100644 --- a/internal/catch_debugger.hpp +++ b/internal/catch_debugger.hpp @@ -87,9 +87,11 @@ inline void writeToDebugConsole( const std::string& text ) { -#ifdef _WIN32 - ::OutputDebugStringA( text.get() ); -#else + // !TBD: Get Windows version working + // - need to declare OutputDebugStringA without Windows.h +//#ifdef _WIN32 +// ::OutputDebugStringA( text.c_str() ); +//#else // !TBD: Need a version for Mac/ XCode and other IDEs std::cout << text; #endif