summaryrefslogtreecommitdiff
path: root/src/common/include/gudhi/graph_simplicial_complex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/include/gudhi/graph_simplicial_complex.h')
-rw-r--r--src/common/include/gudhi/graph_simplicial_complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/include/gudhi/graph_simplicial_complex.h b/src/common/include/gudhi/graph_simplicial_complex.h
index e7a8cfe9..1ad9dabd 100644
--- a/src/common/include/gudhi/graph_simplicial_complex.h
+++ b/src/common/include/gudhi/graph_simplicial_complex.h
@@ -86,7 +86,7 @@ Graph_t compute_proximity_graph( PointCloud &points
auto vertex_prop = boost::get(vertex_filtration_t(),skel_graph);
boost::graph_traits<Graph_t>::vertex_iterator vi, vi_end;
- for ( tie(vi, vi_end) = boost::vertices(skel_graph);
+ for ( std::tie(vi, vi_end) = boost::vertices(skel_graph);
vi != vi_end; ++vi )
{ boost::put(vertex_prop, *vi, 0.); }