2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Added typename; fixes #6656

[SVN r77248]
This commit is contained in:
Jeremiah Willcock
2012-03-06 16:23:53 +00:00
parent 00ae7b7e72
commit fee51b8cdc

View File

@@ -141,7 +141,7 @@ public:
// 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)
{