mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-03 14:54:30 +02:00
Kill another signed/unsigned warning.
[SVN r24005]
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user