lemon/bits/traits.h
changeset 139 701c529ba737
parent 107 31a2e6d28f61
child 184 716b220697a0
     1.1 --- a/lemon/bits/traits.h	Mon Apr 21 17:35:12 2008 +0200
     1.2 +++ b/lemon/bits/traits.h	Tue Apr 22 15:04:00 2008 +0200
     1.3 @@ -216,27 +216,27 @@
     1.4    };
     1.5  
     1.6    template <typename Graph, typename Enable = void>
     1.7 -  struct ArcNumTagIndicator {
     1.8 +  struct EdgeNumTagIndicator {
     1.9      static const bool value = false;
    1.10    };
    1.11  
    1.12    template <typename Graph>
    1.13 -  struct ArcNumTagIndicator<
    1.14 +  struct EdgeNumTagIndicator<
    1.15      Graph, 
    1.16 -    typename enable_if<typename Graph::ArcNumTag, void>::type
    1.17 +    typename enable_if<typename Graph::EdgeNumTag, void>::type
    1.18    > {
    1.19      static const bool value = true;
    1.20    };
    1.21  
    1.22    template <typename Graph, typename Enable = void>
    1.23 -  struct FindArcTagIndicator {
    1.24 +  struct FindEdgeTagIndicator {
    1.25      static const bool value = false;
    1.26    };
    1.27  
    1.28    template <typename Graph>
    1.29 -  struct FindArcTagIndicator<
    1.30 +  struct FindEdgeTagIndicator<
    1.31      Graph, 
    1.32 -    typename enable_if<typename Graph::FindArcTag, void>::type
    1.33 +    typename enable_if<typename Graph::FindEdgeTag, void>::type
    1.34    > {
    1.35      static const bool value = true;
    1.36    };