remove BOOST_FOREACH

This commit is contained in:
Sébastien Loriot 2020-09-08 17:37:03 +02:00 committed by Laurent Rineau
parent 51e89b08ba
commit c70102e7fa
1 changed files with 1 additions and 1 deletions

View File

@ -955,7 +955,7 @@ void dump_edges(const Bimap& edges, const char* filename)
std::ofstream ofs(filename);
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())
<< " " << point(it.first.second->point()) << std::endl;