1.1 --- a/lemon/bellman_ford.h Thu Mar 16 13:52:12 2006 +0000
1.2 +++ b/lemon/bellman_ford.h Fri Mar 17 15:54:02 2006 +0000
1.3 @@ -278,7 +278,7 @@
1.4 template <class T>
1.5 struct DefDistMapTraits : public Traits {
1.6 typedef T DistMap;
1.7 - static DistMap *createDistMap(const Graph& graph) {
1.8 + static DistMap *createDistMap(const Graph&) {
1.9 throw UninitializedParameter();
1.10 }
1.11 };
2.1 --- a/lemon/dijkstra.h Thu Mar 16 13:52:12 2006 +0000
2.2 +++ b/lemon/dijkstra.h Fri Mar 17 15:54:02 2006 +0000
2.3 @@ -283,7 +283,7 @@
2.4 template <class T>
2.5 struct DefPredMapTraits : public Traits {
2.6 typedef T PredMap;
2.7 - static PredMap *createPredMap(const Graph &G)
2.8 + static PredMap *createPredMap(const Graph &)
2.9 {
2.10 throw UninitializedParameter();
2.11 }
2.12 @@ -301,7 +301,7 @@
2.13 template <class T>
2.14 struct DefDistMapTraits : public Traits {
2.15 typedef T DistMap;
2.16 - static DistMap *createDistMap(const Graph &G)
2.17 + static DistMap *createDistMap(const Graph &)
2.18 {
2.19 throw UninitializedParameter();
2.20 }