summaryrefslogtreecommitdiff
path: root/src/common/include/gudhi/graph_simplicial_complex.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-06 10:46:32 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-06 10:46:32 +0000
commit5b28454c34bab66bad9c95b2b179af0c2e809efd (patch)
tree74ff313cfe70632997eefae7566a718b48c9e028 /src/common/include/gudhi/graph_simplicial_complex.h
parentcd3dfa44b3ad2441c55c2088bbeb2a4df43308cd (diff)
tie is in std namespace - Windows error
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@404 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 27e95f55da32d596d6557f84bb91c5a00085ef72
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.); }