lemon/concepts/graph_components.h
changeset 1000 404b98971e1f
parent 976 426a704d7483
parent 998 7fdaa05a69a1
child 1010 36fa2fee7144
equal deleted inserted replaced
22:692519c8ab6b 25:bcc5e3c40756
   492           checkConcept<GraphItem<>, _GraphItemIt>();
   492           checkConcept<GraphItem<>, _GraphItemIt>();
   493           _GraphItemIt it1(g);
   493           _GraphItemIt it1(g);
   494           _GraphItemIt it2;
   494           _GraphItemIt it2;
   495           _GraphItemIt it3 = it1;
   495           _GraphItemIt it3 = it1;
   496           _GraphItemIt it4 = INVALID;
   496           _GraphItemIt it4 = INVALID;
       
   497           ignore_unused_variable_warning(it3);
       
   498           ignore_unused_variable_warning(it4);
   497 
   499 
   498           it2 = ++it1;
   500           it2 = ++it1;
   499           ++it2 = it1;
   501           ++it2 = it1;
   500           ++(++it1);
   502           ++(++it1);
   501 
   503 
   581           checkConcept<GraphItem<sel>, _GraphIncIt>();
   583           checkConcept<GraphItem<sel>, _GraphIncIt>();
   582           _GraphIncIt it1(graph, node);
   584           _GraphIncIt it1(graph, node);
   583           _GraphIncIt it2;
   585           _GraphIncIt it2;
   584           _GraphIncIt it3 = it1;
   586           _GraphIncIt it3 = it1;
   585           _GraphIncIt it4 = INVALID;
   587           _GraphIncIt it4 = INVALID;
       
   588           ignore_unused_variable_warning(it3);
       
   589           ignore_unused_variable_warning(it4);
   586 
   590 
   587           it2 = ++it1;
   591           it2 = ++it1;
   588           ++it2 = it1;
   592           ++it2 = it1;
   589           ++(++it1);
   593           ++(++it1);
   590           Item e = it1;
   594           Item e = it1;