diff -r d00b85f8be45 -r a490662291b9 src/lemon/dijkstra.h --- a/src/lemon/dijkstra.h Mon Apr 18 14:18:12 2005 +0000 +++ b/src/lemon/dijkstra.h Mon Apr 18 14:59:24 2005 +0000 @@ -787,7 +787,7 @@ ///This function instantiates a \ref PredMap. ///\param G is the graph, to which we would like to define the PredMap. ///\todo The graph alone may be insufficient for the initialization - static PredMap *createPredMap(const GR &G) + static PredMap *createPredMap(const GR &) { return new PredMap(); } @@ -805,7 +805,7 @@ ///This function instantiates a \ref ProcessedMap. ///\param G is the graph, to which ///we would like to define the \ref ProcessedMap - static ProcessedMap *createProcessedMap(const GR &G) + static ProcessedMap *createProcessedMap(const GR &) { return new ProcessedMap(); } @@ -819,7 +819,7 @@ ///This function instantiates a \ref DistMap. ///\param G is the graph, to which we would like to define the \ref DistMap - static DistMap *createDistMap(const GR &G) + static DistMap *createDistMap(const GR &) { return new DistMap(); } @@ -974,7 +974,7 @@ template struct DefPredMapBase : public Base { typedef T PredMap; - static PredMap *createPredMap(const Graph &G) { return 0; }; + static PredMap *createPredMap(const Graph &) { return 0; }; DefPredMapBase(const TR &b) : TR(b) {} }; @@ -1015,7 +1015,7 @@ template struct DefDistMapBase : public Base { typedef T DistMap; - static DistMap *createDistMap(const Graph &G) { return 0; }; + static DistMap *createDistMap(const Graph &) { return 0; }; DefDistMapBase(const TR &b) : TR(b) {} };