From 8cf0f62c064463f63238b64a98a18f6c9b1a3521 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 24 Jul 2004 07:00:08 +0000 Subject: [PATCH] Kill another signed/unsigned warning. [SVN r24005] --- test/for_each.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/for_each.cpp b/test/for_each.cpp index 17a2a48..bddab27 100644 --- a/test/for_each.cpp +++ b/test/for_each.cpp @@ -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; }