A: <WARNING: comparison between signed and unsigned> has been fixed , ONCE MORE :-(
This commit is contained in:
parent
5b5b71b148
commit
66465c5a09
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ public :
|
||||||
{
|
{
|
||||||
if (total == 0)
|
if (total == 0)
|
||||||
{ // count
|
{ // count
|
||||||
for (int i = 0; i < vec.size(); ++i)
|
for (unsigned i = 0; i < vec.size(); ++i)
|
||||||
total += vec[i];
|
total += vec[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue