diff --git a/example/concept_checks.cpp b/example/concept_checks.cpp index 6a5b0c2e..b2c6947a 100644 --- a/example/concept_checks.cpp +++ b/example/concept_checks.cpp @@ -71,6 +71,8 @@ main(int,char*[]) allow_parallel_edge_tag> Graph3; function_requires< VertexListGraphConcept >(); + function_requires< ColorValueConcept >(); + typedef incidence_graph_archetype G; typedef property_graph_archetype Graph4; @@ -349,8 +351,6 @@ main(int,char*[]) typedef std::vector< std::list > Graph; function_requires< VertexListGraphConcept >(); } -#endif - #endif return 0; }