mirror of https://github.com/CGAL/cgal
Fix warning (unused types and variables)
This commit is contained in:
parent
e747016020
commit
3704a59422
|
|
@ -207,9 +207,7 @@ export_triangulation_to_off(std::ostream & os,
|
||||||
{
|
{
|
||||||
typedef Triangulation<GT,TDS> Tr;
|
typedef Triangulation<GT,TDS> Tr;
|
||||||
typedef typename Tr::Vertex_const_handle Vertex_handle;
|
typedef typename Tr::Vertex_const_handle Vertex_handle;
|
||||||
typedef typename Tr::Vertex_const_iterator Vertex_iterator;
|
|
||||||
typedef typename Tr::Finite_vertex_const_iterator Finite_vertex_iterator;
|
typedef typename Tr::Finite_vertex_const_iterator Finite_vertex_iterator;
|
||||||
typedef typename Tr::Full_cell_const_handle Full_cell_handle;
|
|
||||||
typedef typename Tr::Finite_full_cell_const_iterator Finite_full_cell_iterator;
|
typedef typename Tr::Finite_full_cell_const_iterator Finite_full_cell_iterator;
|
||||||
typedef typename Tr::Full_cell_const_iterator Full_cell_iterator;
|
typedef typename Tr::Full_cell_const_iterator Full_cell_iterator;
|
||||||
typedef typename Tr::Full_cell Full_cell;
|
typedef typename Tr::Full_cell Full_cell;
|
||||||
|
|
|
||||||
|
|
@ -919,7 +919,6 @@ Triangulation<TT, TDS>
|
||||||
// infinite one...
|
// infinite one...
|
||||||
CGAL_precondition( is_infinite(s) );
|
CGAL_precondition( is_infinite(s) );
|
||||||
CGAL_precondition( 1 == current_dimension() );
|
CGAL_precondition( 1 == current_dimension() );
|
||||||
int inf_v_index = s->index(infinite_vertex());
|
|
||||||
Vertex_handle v = tds().insert_in_full_cell(s);
|
Vertex_handle v = tds().insert_in_full_cell(s);
|
||||||
v->set_point(p);
|
v->set_point(p);
|
||||||
return v;
|
return v;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue