solving warning converting from unsigned int to int

This commit is contained in:
Ophir Setter 2010-06-21 21:52:32 +00:00
parent 7dd0870ee0
commit 4069742707
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ int main (int argc, char* argv[])
return -1; return -1;
} }
unsigned int i = 1; int i = 1;
while (i < argc) { while (i < argc) {
// Read the polygon from the input file. // Read the polygon from the input file.
Polygon_2 pgn; Polygon_2 pgn;