Opened 11 years ago
Closed 11 years ago
#6656 closed Bugs (fixed)
Dependent type in subgraph used without typename
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | graph |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | graph typename subgraph | Cc: |
Description
In revision 77223, the dependent type subgraph<Graph>::children_iterator
is used on line 144 of boost/graph/subgraph.hpp
without qualifying it with typename
.
This causes a compilation failure on Pathscale, adding a typename
resolves the error.
Note:
See TracTickets
for help on using tickets.
(In [77248]) Added typename; fixes #6656