diff options
Diffstat (limited to 'indra/llcommon')
| -rwxr-xr-x | indra/llcommon/llerror.h | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/indra/llcommon/llerror.h b/indra/llcommon/llerror.h index a2a6993330..cc9bfba818 100755 --- a/indra/llcommon/llerror.h +++ b/indra/llcommon/llerror.h @@ -206,10 +206,8 @@ namespace LLError  }  #if LL_WINDOWS -	// Macro accepting a wchar_t* for display in windows debugging console in debug builds only -	// (wchar_t flavor chosen for maximal utility with unicode text debugging) -	// -	#define LL_WINDOWS_OUTPUT_DEBUG(a) LLError::LLOutputDebugUTF8((a)) +	// Macro accepting a const std::string& for display in windows debugging console in debug builds only +	#define LL_WINDOWS_OUTPUT_DEBUG(a) LLError::LLOutputDebugUTF8(a)  #else  	#define LL_WINDOWS_OUTPUT_DEBUG(a)  #endif | 
