summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Moss <moss@lindenlab.com>2009-09-22 22:12:54 +0000
committerAdam Moss <moss@lindenlab.com>2009-09-22 22:12:54 +0000
commitd65c7b0f90acfbc88e94000a92703aad7413139e (patch)
treedba5589ca447e0fed570a674b6f85574cacdab6e
parent696b71938c36b4f5de4de47927a565c8b6bb404c (diff)
svn merge -c-134040 .
back-out my last commit - it fixed the build test, but the build still fails; I'll leave it alone...
-rw-r--r--indra/llui/tests/llurlentry_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/tests/llurlentry_test.cpp b/indra/llui/tests/llurlentry_test.cpp
index e7af64187c..89a80f1e73 100644
--- a/indra/llui/tests/llurlentry_test.cpp
+++ b/indra/llui/tests/llurlentry_test.cpp
@@ -50,7 +50,7 @@ namespace tut
std::string url = "";
boost::wcmatch result;
LLWString wtext = utf8str_to_wstring(text);
- const wchar_t *wctext = (const wchar_t *)(wtext.c_str());
+ const wchar_t *wctext = wtext.c_str();
bool found = boost::regex_search(wctext, result, regex);
if (found)
{