fix example

This commit is contained in:
Glenn Maynard
2006-02-11 03:41:05 +00:00
parent 30427807f6
commit 7f326ae2cf
+3 -3
View File
@@ -581,10 +581,10 @@ RString str="a,b,c";
int start = 0, size = -1;
while( 1 )
{
do_split( str, ",", begin, size );
if( begin == str.end() )
do_split( str, ",", start, size );
if( start == str.size() )
break;
str[begin] = 'Q';
str[start] = 'Q';
}
*/