A: <WARNING: comparison between signed and unsigned> has been fixed :-))
This commit is contained in:
parent
801ba49682
commit
4f40da85e4
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