mirror of https://github.com/CGAL/cgal
Fix a warning
This commit is contained in:
parent
c6de2a50b2
commit
8c47df9bf7
|
|
@ -87,8 +87,11 @@ void find_face_from_vertices( const TDS & tds,
|
|||
}
|
||||
if( i > fdim ) {// the full cell |*cit| contains |face|
|
||||
face.set_full_cell(*cit);
|
||||
for( int i = 0; i <= fdim; ++i )
|
||||
face.set_index(i, (*cit)->index(face_vertices[i]));
|
||||
for( std::size_t i = 0; i <= fdim; ++i )
|
||||
{
|
||||
face.set_index(static_cast<int>(i),
|
||||
(*cit)->index(face_vertices[i]));
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue