[complement-svn] SF.net SVN: complement: [1327] trunk/explore/perf/STL/string/add-proxy/str. cc
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2006-10-16 18:08:00
|
Revision: 1327 http://svn.sourceforge.net/complement/?rev=1327&view=rev Author: complement Date: 2006-10-16 11:07:55 -0700 (Mon, 16 Oct 2006) Log Message: ----------- reduce number of iterations Modified Paths: -------------- trunk/explore/perf/STL/string/add-proxy/str.cc Modified: trunk/explore/perf/STL/string/add-proxy/str.cc =================================================================== --- trunk/explore/perf/STL/string/add-proxy/str.cc 2006-10-16 18:03:19 UTC (rev 1326) +++ trunk/explore/perf/STL/string/add-proxy/str.cc 2006-10-16 18:07:55 UTC (rev 1327) @@ -12,7 +12,7 @@ string s3 = ".ext"; string s4 = " /* my comment about this */"; - for ( int i = 0; i < 100000000; ++i ) { + for ( int i = 0; i < 5000000; ++i ) { s = s1 + "/" + s2 + s3 + " => " + s4; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |