mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-04 07:14: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));
|
mpl::for_each< numbers >(value_printer(std::cout));
|
||||||
|
|
||||||
for (unsigned i = 0; i < v.size(); ++i)
|
for (unsigned i = 0; i < v.size(); ++i)
|
||||||
assert(v[i] == i);
|
assert(v[i] == (int)i);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user