[Compbench-devel] CompBenchmarks++/libcompbenchmarks/System System.cpp, 1.20, 1.21
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-08-27 20:21:02
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/System In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv23046 Modified Files: System.cpp Log Message: Fix on possible signess issue (64-bits). Index: System.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/System/System.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** System.cpp 21 Aug 2007 21:02:05 -0000 1.20 --- System.cpp 27 Aug 2007 20:20:58 -0000 1.21 *************** *** 369,375 **** { unsigned int offset = 0; ! unsigned int delimIndex = 0; unsigned int nowIndex = 0; ! int oneTime = 0; delimIndex = str.find(delim, offset); --- 369,375 ---- { unsigned int offset = 0; ! int delimIndex = 0; unsigned int nowIndex = 0; ! int oneTime = 0; delimIndex = str.find(delim, offset); |