mirror of https://github.com/CGAL/cgal
int -> size_t
This commit is contained in:
parent
3bc9d0a2a6
commit
da076665d2
|
|
@ -45,7 +45,7 @@ int main( int argc, char **argv) {
|
||||||
int n = 0; // number of filenames
|
int n = 0; // number of filenames
|
||||||
char *filename[2];
|
char *filename[2];
|
||||||
bool help = false;
|
bool help = false;
|
||||||
int i = 1;
|
std::size_t i = 1;
|
||||||
for ( ; i < argc; i++) { // check commandline options
|
for ( ; i < argc; i++) { // check commandline options
|
||||||
if ( strcmp( "-v", argv[i]) == 0)
|
if ( strcmp( "-v", argv[i]) == 0)
|
||||||
verbose = true;
|
verbose = true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue