Changes in lemon/concepts/graph.h [107:31a2e6d28f61:125:19e82bda606a] in lemon-1.2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/graph.h
r107 r125 732 732 } 733 733 734 template <typename Graph>734 template <typename _Graph> 735 735 struct Constraints { 736 736 void constraints() { 737 checkConcept<IterableGraphComponent<>, Graph>();738 checkConcept<IDableGraphComponent<>, Graph>();739 checkConcept<MappableGraphComponent<>, Graph>();737 checkConcept<IterableGraphComponent<>, _Graph>(); 738 checkConcept<IDableGraphComponent<>, _Graph>(); 739 checkConcept<MappableGraphComponent<>, _Graph>(); 740 740 } 741 741 };
Note: See TracChangeset
for help on using the changeset viewer.