Fix the fix of a warning

This commit is contained in:
Laurent Rineau 2013-02-07 12:51:55 +01:00
parent c029f702a3
commit 01db7d30af
1 changed files with 3 additions and 1 deletions

View File

@ -1393,7 +1393,9 @@ public:
void new_input_polyhedron(Polyhedron& P)
{
CGAL_assertion_code((std::pair<typename Poly_to_map_node::iterator,bool>) res = )
typedef std::pair<typename Poly_to_map_node::iterator,bool> Res;
CGAL_USE_TYPE(Res);
CGAL_assertion_code(Res res = )
polyhedron_to_map_node_to_polyhedron_vertex.insert(std::make_pair( &P,Node_to_polyhedron_vertex_map() ));
CGAL_assertion(res.second == true);
}