Changeset 1467:638124c0ef08 in lemon-0.x
- Timestamp:
- 06/09/05 23:49:48 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1947
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_utils.h
r1459 r1467 879 879 /// Constructor for creating in-degree map. 880 880 InDegMap(const _Graph& _graph) : 881 _Graph:: NodeMap<int>(_graph,0),881 _Graph::template NodeMap<int>(_graph,0), 882 882 graph(_graph) 883 883 { … … 945 945 /// Constructor for creating out-degree map. 946 946 OutDegMap(const _Graph& _graph) : 947 _Graph:: NodeMap<int>(_graph,0),947 _Graph::template NodeMap<int>(_graph,0), 948 948 graph(_graph) 949 949 {
Note: See TracChangeset
for help on using the changeset viewer.