int -> std::size_t (only catched with /W3)

This commit is contained in:
Andreas Fabri 2022-05-11 07:06:41 +01:00
parent d01fa7bddd
commit eaa70a7520
1 changed files with 2 additions and 2 deletions

View File

@ -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