mirror of https://github.com/CGAL/cgal
int -> std::size_t (only catched with /W3)
This commit is contained in:
parent
d01fa7bddd
commit
eaa70a7520
|
|
@ -126,8 +126,8 @@ struct Progress :
|
||||||
|
|
||||||
mutable Timer timer;
|
mutable Timer timer;
|
||||||
double time_limit;
|
double time_limit;
|
||||||
int quadratic_n = 0, quadratic_i = 0, quadratic_report = 0;
|
std::size_t quadratic_n = 0, quadratic_i = 0, quadratic_report = 0;
|
||||||
int cubic_n = 0, cubic_i = 0, cubic_report = 0;
|
std::size_t cubic_n = 0, cubic_i = 0, cubic_report = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Incrementally fill the holes that are no larger than given diameter
|
// Incrementally fill the holes that are no larger than given diameter
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue