From 4069742707c263b1c6c43a356ed90d09affeda42 Mon Sep 17 00:00:00 2001 From: Ophir Setter Date: Mon, 21 Jun 2010 21:52:32 +0000 Subject: [PATCH] solving warning converting from unsigned int to int --- Minkowski_sum_2/test/Minkowski_sum_2/test_approx_offset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minkowski_sum_2/test/Minkowski_sum_2/test_approx_offset.cpp b/Minkowski_sum_2/test/Minkowski_sum_2/test_approx_offset.cpp index 41e9241135c..d378a271366 100644 --- a/Minkowski_sum_2/test/Minkowski_sum_2/test_approx_offset.cpp +++ b/Minkowski_sum_2/test/Minkowski_sum_2/test_approx_offset.cpp @@ -58,7 +58,7 @@ int main (int argc, char* argv[]) return -1; } - unsigned int i = 1; + int i = 1; while (i < argc) { // Read the polygon from the input file. Polygon_2 pgn;