Fix warnings about signed/unsigned

The code involved is about TBB.
This commit is contained in:
Laurent Rineau 2015-01-21 12:59:07 +01:00
parent eb5e2c6800
commit 72e0a3e677
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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