src/lemon/bfs.h
changeset 1367 a490662291b9
parent 1359 1581f961cfaa
     1.1 --- a/src/lemon/bfs.h	Mon Apr 18 14:18:12 2005 +0000
     1.2 +++ b/src/lemon/bfs.h	Mon Apr 18 14:59:24 2005 +0000
     1.3 @@ -86,7 +86,7 @@
     1.4      ///This function instantiates a \ref ProcessedMap. 
     1.5      ///\param G is the graph, to which
     1.6      ///we would like to define the \ref ProcessedMap
     1.7 -    static ProcessedMap *createProcessedMap(const GR &G)
     1.8 +    static ProcessedMap *createProcessedMap(const GR &)
     1.9      {
    1.10        return new ProcessedMap();
    1.11      }
    1.12 @@ -769,7 +769,7 @@
    1.13      ///This function instantiates a \ref PredMap. 
    1.14      ///\param G is the graph, to which we would like to define the PredMap.
    1.15      ///\todo The graph alone may be insufficient to initialize
    1.16 -    static PredMap *createPredMap(const GR &G) 
    1.17 +    static PredMap *createPredMap(const GR &) 
    1.18      {
    1.19        return new PredMap();
    1.20      }
    1.21 @@ -802,7 +802,7 @@
    1.22      ///This function instantiates a \ref ProcessedMap. 
    1.23      ///\param G is the graph, to which
    1.24      ///we would like to define the \ref ProcessedMap
    1.25 -    static ProcessedMap *createProcessedMap(const GR &G)
    1.26 +    static ProcessedMap *createProcessedMap(const GR &)
    1.27      {
    1.28        return new ProcessedMap();
    1.29      }
    1.30 @@ -831,7 +831,7 @@
    1.31   
    1.32      ///This function instantiates a \ref DistMap. 
    1.33      ///\param G is the graph, to which we would like to define the \ref DistMap
    1.34 -    static DistMap *createDistMap(const GR &G)
    1.35 +    static DistMap *createDistMap(const GR &)
    1.36      {
    1.37        return new DistMap();
    1.38      }
    1.39 @@ -988,7 +988,7 @@
    1.40      template<class T>
    1.41      struct DefPredMapBase : public Base {
    1.42        typedef T PredMap;
    1.43 -      static PredMap *createPredMap(const Graph &G) { return 0; };
    1.44 +      static PredMap *createPredMap(const Graph &) { return 0; };
    1.45        DefPredMapBase(const TR &b) : TR(b) {}
    1.46      };
    1.47      
    1.48 @@ -1009,7 +1009,7 @@
    1.49      template<class T>
    1.50      struct DefReachedMapBase : public Base {
    1.51        typedef T ReachedMap;
    1.52 -      static ReachedMap *createReachedMap(const Graph &G) { return 0; };
    1.53 +      static ReachedMap *createReachedMap(const Graph &) { return 0; };
    1.54        DefReachedMapBase(const TR &b) : TR(b) {}
    1.55      };
    1.56      
    1.57 @@ -1030,7 +1030,7 @@
    1.58      template<class T>
    1.59      struct DefProcessedMapBase : public Base {
    1.60        typedef T ProcessedMap;
    1.61 -      static ProcessedMap *createProcessedMap(const Graph &G) { return 0; };
    1.62 +      static ProcessedMap *createProcessedMap(const Graph &) { return 0; };
    1.63        DefProcessedMapBase(const TR &b) : TR(b) {}
    1.64      };
    1.65      
    1.66 @@ -1071,7 +1071,7 @@
    1.67      template<class T>
    1.68      struct DefDistMapBase : public Base {
    1.69        typedef T DistMap;
    1.70 -      static DistMap *createDistMap(const Graph &G) { return 0; };
    1.71 +      static DistMap *createDistMap(const Graph &) { return 0; };
    1.72        DefDistMapBase(const TR &b) : TR(b) {}
    1.73      };
    1.74