diff --git a/lemon/bits/traits.h b/lemon/bits/traits.h --- a/lemon/bits/traits.h +++ b/lemon/bits/traits.h @@ -216,27 +216,27 @@ }; template - struct ArcNumTagIndicator { + struct EdgeNumTagIndicator { static const bool value = false; }; template - struct ArcNumTagIndicator< + struct EdgeNumTagIndicator< Graph, - typename enable_if::type + typename enable_if::type > { static const bool value = true; }; template - struct FindArcTagIndicator { + struct FindEdgeTagIndicator { static const bool value = false; }; template - struct FindArcTagIndicator< + struct FindEdgeTagIndicator< Graph, - typename enable_if::type + typename enable_if::type > { static const bool value = true; };