compile fix for macro

This commit is contained in:
imonroe 2006-10-25 17:01:57 +00:00
parent f68aff1f89
commit 73d5814343
1 changed files with 2 additions and 2 deletions

View File

@ -242,7 +242,7 @@ namespace Debug
#define DEBUG_BLOCK Debug::Block uniquelyNamedStackAllocatedStandardBlock( __PRETTY_FUNCTION__ );
/// Standard function announcer
#define DEBUG_FUNC_INFO { debug() << "[" __PRETTY_FUNCTION__ "]" << endl; }
#define DEBUG_FUNC_INFO { debug() << '[' << __PRETTY_FUNCTION__ << ']' << endl; }
/// Announce a line
#define DEBUG_LINE_INFO { debug() << "[" __PRETTY_FUNCTION__ "]" << "Line: " << __LINE__ << endl; }
#define DEBUG_LINE_INFO { debug() << '[' << __PRETTY_FUNCTION__ << ']' << "Line: " << __LINE__ << endl; }