summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-22 21:31:15 -0700
committercallum_linden <none@none>2014-10-22 21:31:15 -0700
commite66844570e42601c1c653d7169c694fd8310fb56 (patch)
tree94d9c98c6cb2fa63519cab7da08ed62801a64c29
parentcc54f34d3fb66892258f82164bce67893f7cbff6 (diff)
Update to build on Xcode 6.0 (fix unit tests): minor fix for debug only unit test
-rwxr-xr-xindra/llcommon/llstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp
index 76979f29f6..617969ab2a 100755
--- a/indra/llcommon/llstring.cpp
+++ b/indra/llcommon/llstring.cpp
@@ -1397,7 +1397,7 @@ void LLStringUtilBase<T>::testHarness()
s2.erase( 4, 1 );
llassert( s2 == "hell");
- s2.insert( 0, 'y' );
+ s2.insert( 0, "y" );
llassert( s2 == "yhell");
s2.erase( 1, 3 );
llassert( s2 == "yl");