This commit is contained in:
Efi Fogel 2010-06-14 11:29:29 +00:00
parent ed2a9a9ffb
commit 428d48f6f7
1 changed files with 2 additions and 3 deletions

View File

@ -38,9 +38,8 @@ void Basic_sweep_line_2<Tr, Visit, Crv, Evnt, Alloc>::PrintEventQueue()
Event_queue_iterator iter = m_queue->begin();
while ( iter != m_queue->end() )
{
CGAL_SL_DEBUG(std::cout << "Point (" << iter->first << ")" << std::endl;)
Event *e = iter->second;
e->Print();
Event *e = *iter;
e->Print();
++iter;
}
CGAL_SL_DEBUG(std::cout << "--------------------------------" << std::endl;)