lemon/concepts/graph.h
changeset 125 19e82bda606a
parent 107 31a2e6d28f61
child 209 765619b7cbb2
     1.1 --- a/lemon/concepts/graph.h	Sat Apr 12 20:38:51 2008 +0100
     1.2 +++ b/lemon/concepts/graph.h	Mon Apr 14 17:37:18 2008 +0100
     1.3 @@ -731,12 +731,12 @@
     1.4  	return INVALID;
     1.5        }
     1.6  
     1.7 -      template <typename Graph>
     1.8 +      template <typename _Graph>
     1.9        struct Constraints {
    1.10  	void constraints() {
    1.11 -	  checkConcept<IterableGraphComponent<>, Graph>();
    1.12 -	  checkConcept<IDableGraphComponent<>, Graph>();
    1.13 -	  checkConcept<MappableGraphComponent<>, Graph>();
    1.14 +	  checkConcept<IterableGraphComponent<>, _Graph>();
    1.15 +	  checkConcept<IDableGraphComponent<>, _Graph>();
    1.16 +	  checkConcept<MappableGraphComponent<>, _Graph>();
    1.17  	}
    1.18        };
    1.19