mirror of https://github.com/CGAL/cgal
Fix warnings about signed/unsigned
The code involved is about TBB.
This commit is contained in:
parent
eb5e2c6800
commit
72e0a3e677
|
|
@ -690,7 +690,7 @@ protected:
|
|||
|
||||
}
|
||||
|
||||
const int NUM_WORK_ITEMS_PER_BATCH;
|
||||
const size_t NUM_WORK_ITEMS_PER_BATCH;
|
||||
|
||||
int m_num_cells_per_axis;
|
||||
int m_num_cells;
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@ public:
|
|||
}
|
||||
#endif // CGAL_CONCURRENT_TRIANGULATION_3_ADD_TEMPORARY_POINTS_ON_FAR_SPHERE
|
||||
|
||||
int i = 0;
|
||||
size_t i = 0;
|
||||
// Insert "num_points_seq" points sequentially
|
||||
// (or more if dim < 3 after that)
|
||||
size_t num_points_seq = (std::min)(num_points, (size_t)100);
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ namespace CGAL {
|
|||
}
|
||||
#endif // CGAL_CONCURRENT_TRIANGULATION_3_ADD_TEMPORARY_POINTS_ON_FAR_SPHERE
|
||||
|
||||
int i = 0;
|
||||
size_t i = 0;
|
||||
// Insert "num_points_seq" points sequentially
|
||||
// (or more if dim < 3 after that)
|
||||
size_t num_points_seq = (std::min)(num_points, (size_t)500);
|
||||
|
|
|
|||
Loading…
Reference in New Issue