mirror of https://github.com/CGAL/cgal
use size_type instead of int
This commit is contained in:
parent
c6dd56cf0f
commit
2740aa9c05
|
|
@ -92,7 +92,7 @@ output_to_tetgen(std::string filename,
|
|||
|
||||
const Tr& tr = c3t3.triangulation();
|
||||
|
||||
std::map<Vertex_handle, int> V;
|
||||
std::map<Vertex_handle, std::size_t> V;
|
||||
|
||||
//-------------------------------------------------------
|
||||
// File output
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ private:
|
|||
template <class Tuple_or_pair,class InputIterator>
|
||||
std::ptrdiff_t insert_with_info(InputIterator first,InputIterator last)
|
||||
{
|
||||
int n = number_of_vertices();
|
||||
size_type n = number_of_vertices();
|
||||
std::vector<std::ptrdiff_t> indices;
|
||||
std::vector<Weighted_point> points;
|
||||
std::vector<typename Triangulation_data_structure::Vertex::Info> infos;
|
||||
|
|
|
|||
Loading…
Reference in New Issue