$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77248 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2012-03-06 11:23:53
Author: jewillco
Date: 2012-03-06 11:23:53 EST (Tue, 06 Mar 2012)
New Revision: 77248
URL: http://svn.boost.org/trac/boost/changeset/77248
Log:
Added typename; fixes #6656
Text files modified: 
   trunk/boost/graph/subgraph.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/graph/subgraph.hpp
==============================================================================
--- trunk/boost/graph/subgraph.hpp	(original)
+++ trunk/boost/graph/subgraph.hpp	2012-03-06 11:23:53 EST (Tue, 06 Mar 2012)
@@ -141,7 +141,7 @@
         // Do a deep copy (recursive).
         // Only the root graph is copied, the subgraphs contain
         // only references to the global vertices they own.
-        subgraph<Graph>::children_iterator i,i_end;
+        typename subgraph<Graph>::children_iterator i,i_end;
         boost::tie(i,i_end) = x.children();
         for(; i != i_end; ++i)
         {