Kill another signed/unsigned warning.

[SVN r24005]
This commit is contained in:
Vladimir Prus
2004-07-24 07:00:08 +00:00
parent 1d455351d8
commit 8cf0f62c06

View File

@@ -80,7 +80,7 @@ int main()
mpl::for_each< numbers >(value_printer(std::cout));
for (unsigned i = 0; i < v.size(); ++i)
assert(v[i] == i);
assert(v[i] == (int)i);
return 0;
}