diff --git a/lemon/concepts/graph_components.h b/lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h +++ b/lemon/concepts/graph_components.h @@ -1424,8 +1424,8 @@ checkConcept(); typename _Graph::Node node; graph.erase(node); - typename _Graph::Arc arc; - graph.erase(arc); + typename _Graph::Edge edge; + graph.erase(edge); } _Graph& graph;