fix conversion warning

This commit is contained in:
Sébastien Loriot 2018-11-08 15:42:38 +01:00
parent 3705c7a35c
commit 2e2ddb7880
1 changed files with 1 additions and 1 deletions

View File

@ -1404,7 +1404,7 @@ operator<<(std::ostream & os, const Triangulation<TT, TDS> & tr)
size_t i(0); size_t i(0);
// write the vertices // write the vertices
std::map<Vertex_handle, int> index_of_vertex; std::map<Vertex_handle, size_t> index_of_vertex;
// infinite vertex has index 0 (among all the vertices) // infinite vertex has index 0 (among all the vertices)
index_of_vertex[tr.infinite_vertex()] = i++; index_of_vertex[tr.infinite_vertex()] = i++;