Skip to content
Snippets Groups Projects
Commit e6684457 authored by callum_linden's avatar callum_linden
Browse files

Update to build on Xcode 6.0 (fix unit tests): minor fix for debug only unit test

parent cc54f34d
No related branches found
No related tags found
No related merge requests found
...@@ -1397,7 +1397,7 @@ void LLStringUtilBase<T>::testHarness() ...@@ -1397,7 +1397,7 @@ void LLStringUtilBase<T>::testHarness()
s2.erase( 4, 1 ); s2.erase( 4, 1 );
llassert( s2 == "hell"); llassert( s2 == "hell");
s2.insert( 0, 'y' ); s2.insert( 0, "y" );
llassert( s2 == "yhell"); llassert( s2 == "yhell");
s2.erase( 1, 3 ); s2.erase( 1, 3 );
llassert( s2 == "yl"); llassert( s2 == "yl");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment