Merge remote-tracking branch 'remotes/origin/BGL-fix_example-GF' into releases/CGAL-4.5-branch

Fix the example examples/BGL_triangulation_2/emst.cpp:
the filtered (finite) triangulation was not used.

Tested in CGAL-4.5.1-Ic-167.
Approved by the Release Manager.
This commit is contained in:
Laurent Rineau 2014-11-28 12:03:30 +01:00
commit ad53e42fb3
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ main(int,char*[])
// In the function call you can see a named parameter: vertex_index_map
std::list<edge_descriptor> mst;
boost::kruskal_minimum_spanning_tree(t,
boost::kruskal_minimum_spanning_tree(ft,
std::back_inserter(mst),
vertex_index_map(vertex_index_pmap));