Add mnissing <iostream>

This commit is contained in:
Maxime Gimeno 2019-11-29 09:14:11 +01:00
parent 19efe6e568
commit b36a1bd18c
2 changed files with 5 additions and 3 deletions

View File

@ -28,6 +28,9 @@
#include <CGAL/Dimension.h>
#include <CGAL/aff_transformation_tags.h>
#ifndef CGAL_NO_OSTREAM_INSERT_AFF_TRANSFORMATION_3
#include <iostream>
#endif
namespace CGAL {
template <class R_>

View File

@ -136,7 +136,7 @@ public:
} ;
typedef Modifiable_priority_queue<halfedge_descriptor,Compare_cost,edge_id> PQ ;
typedef Modifiable_priority_queue<halfedge_descriptor,Compare_cost,edge_id> PQ;
typedef typename PQ::handle pq_handle ;
// An Edge_data is associated with EVERY _ edge in the mesh (collapsable or not).
@ -300,7 +300,6 @@ private:
CGAL_SURF_SIMPL_TEST_assertion(mPQ->contains(aEdge) ) ;
aData.set_PQ_handle(mPQ->update(aEdge,aData.PQ_handle())) ;
CGAL_SURF_SIMPL_TEST_assertion(aData.is_in_PQ());
CGAL_SURF_SIMPL_TEST_assertion(mPQ->contains(aEdge) ) ;
}
@ -310,7 +309,7 @@ private:
CGAL_SURF_SIMPL_TEST_assertion(is_primary_edge(aEdge)) ;
CGAL_SURF_SIMPL_TEST_assertion(aData.is_in_PQ());
CGAL_SURF_SIMPL_TEST_assertion(mPQ->contains(aEdge) ) ;
std::cout<<"remove"<<std::endl;
aData.set_PQ_handle(mPQ->erase(aEdge,aData.PQ_handle()));
CGAL_SURF_SIMPL_TEST_assertion(!aData.is_in_PQ());