mirror of https://github.com/CGAL/cgal
remove BOOST_FOREACH
This commit is contained in:
parent
51e89b08ba
commit
c70102e7fa
|
|
@ -955,7 +955,7 @@ void dump_edges(const Bimap& edges, const char* filename)
|
||||||
std::ofstream ofs(filename);
|
std::ofstream ofs(filename);
|
||||||
ofs.precision(17);
|
ofs.precision(17);
|
||||||
|
|
||||||
BOOST_FOREACH(typename Bimap::left_const_reference it, edges.left)
|
for(typename Bimap::left_const_reference it : edges.left)
|
||||||
{
|
{
|
||||||
ofs << "2 " << point(it.first.first->point())
|
ofs << "2 " << point(it.first.first->point())
|
||||||
<< " " << point(it.first.second->point()) << std::endl;
|
<< " " << point(it.first.second->point()) << std::endl;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue