A: <WARNING: comparison between signed and unsigned> has been fixed, ONCE MORE :-(

This commit is contained in:
victor 2000-02-21 18:21:14 +00:00
commit 93fcc4c048

View file

@ -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];
} }