src/lemon/dijkstra.h
changeset 1367 a490662291b9
parent 1366 d00b85f8be45
     1.1 --- a/src/lemon/dijkstra.h	Mon Apr 18 14:18:12 2005 +0000
     1.2 +++ b/src/lemon/dijkstra.h	Mon Apr 18 14:59:24 2005 +0000
     1.3 @@ -787,7 +787,7 @@
     1.4      ///This function instantiates a \ref PredMap. 
     1.5      ///\param G is the graph, to which we would like to define the PredMap.
     1.6      ///\todo The graph alone may be insufficient for the initialization
     1.7 -    static PredMap *createPredMap(const GR &G) 
     1.8 +    static PredMap *createPredMap(const GR &) 
     1.9      {
    1.10        return new PredMap();
    1.11      }
    1.12 @@ -805,7 +805,7 @@
    1.13      ///This function instantiates a \ref ProcessedMap. 
    1.14      ///\param G is the graph, to which
    1.15      ///we would like to define the \ref ProcessedMap
    1.16 -    static ProcessedMap *createProcessedMap(const GR &G)
    1.17 +    static ProcessedMap *createProcessedMap(const GR &)
    1.18      {
    1.19        return new ProcessedMap();
    1.20      }
    1.21 @@ -819,7 +819,7 @@
    1.22   
    1.23      ///This function instantiates a \ref DistMap. 
    1.24      ///\param G is the graph, to which we would like to define the \ref DistMap
    1.25 -    static DistMap *createDistMap(const GR &G)
    1.26 +    static DistMap *createDistMap(const GR &)
    1.27      {
    1.28        return new DistMap();
    1.29      }
    1.30 @@ -974,7 +974,7 @@
    1.31      template<class T>
    1.32      struct DefPredMapBase : public Base {
    1.33        typedef T PredMap;
    1.34 -      static PredMap *createPredMap(const Graph &G) { return 0; };
    1.35 +      static PredMap *createPredMap(const Graph &) { return 0; };
    1.36        DefPredMapBase(const TR &b) : TR(b) {}
    1.37      };
    1.38      
    1.39 @@ -1015,7 +1015,7 @@
    1.40      template<class T>
    1.41      struct DefDistMapBase : public Base {
    1.42        typedef T DistMap;
    1.43 -      static DistMap *createDistMap(const Graph &G) { return 0; };
    1.44 +      static DistMap *createDistMap(const Graph &) { return 0; };
    1.45        DefDistMapBase(const TR &b) : TR(b) {}
    1.46      };
    1.47