summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-06-05 07:24:31 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-06-05 07:24:31 -0700
commit1fcf54094a915bbc7ec1d74a877699212714ae93 (patch)
treec70712e2dabfd097272eca2440b1841e2d811070 /indra/llcommon
parenta45860fd662f4b0f6c10bf102ebf6c0aac5127f3 (diff)
BUG-2707 fix comment typos, remove unnecessary winmm_shim changes, and revert 2672 fix included only for local integ test
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/llerror.h6
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