diff -r a0f755a30cf1 -r 701c529ba737 lemon/bits/traits.h --- a/lemon/bits/traits.h Mon Apr 21 17:35:12 2008 +0200 +++ b/lemon/bits/traits.h Tue Apr 22 15:04:00 2008 +0200 @@ -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; };