int ->? std::size_t

This commit is contained in:
Andreas Fabri 2022-04-26 07:58:54 +01:00
parent a0a3c1fa24
commit 30056cf3b1
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ struct Visitor_rep{
}
}
void start_coplanar_faces(int tc)
void start_coplanar_faces(std::size_t tc)
{
std::cout << "Visitor::start_coplanar_faces() at " << t.time() << " sec." << std::endl;
tcoplanar= tc;
@ -60,7 +60,7 @@ struct Visitor_rep{
}
}
void start_intersection_points(int ti)
void start_intersection_points(std::size_t ti)
{
std::cout << "Visitor::start_intersection_points() at " << t.time() << " sec." << std::endl;
tintersection= ti;