From 5b28454c34bab66bad9c95b2b179af0c2e809efd Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 6 Jan 2015 10:46:32 +0000 Subject: 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 --- src/common/include/gudhi/graph_simplicial_complex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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::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.); } -- cgit v1.2.3