Removed OutputDebugString support until I can test it on a Windows machine

This commit is contained in:
Phil Nash 2011-01-19 19:19:06 +00:00
parent ae307b000a
commit 5108821199
1 changed files with 5 additions and 3 deletions

View File

@ -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