# HG changeset patch # User klao # Date 1142610842 0 # Node ID 08464643a658593222479d5218a8474d630ab4fd # Parent de287863cc98bddf9f0592559692b2238c495acf unused parameters fix diff -r de287863cc98 -r 08464643a658 lemon/bellman_ford.h --- a/lemon/bellman_ford.h Thu Mar 16 13:52:12 2006 +0000 +++ b/lemon/bellman_ford.h Fri Mar 17 15:54:02 2006 +0000 @@ -278,7 +278,7 @@ template struct DefDistMapTraits : public Traits { typedef T DistMap; - static DistMap *createDistMap(const Graph& graph) { + static DistMap *createDistMap(const Graph&) { throw UninitializedParameter(); } }; diff -r de287863cc98 -r 08464643a658 lemon/dijkstra.h --- a/lemon/dijkstra.h Thu Mar 16 13:52:12 2006 +0000 +++ b/lemon/dijkstra.h Fri Mar 17 15:54:02 2006 +0000 @@ -283,7 +283,7 @@ template struct DefPredMapTraits : public Traits { typedef T PredMap; - static PredMap *createPredMap(const Graph &G) + static PredMap *createPredMap(const Graph &) { throw UninitializedParameter(); } @@ -301,7 +301,7 @@ template struct DefDistMapTraits : public Traits { typedef T DistMap; - static DistMap *createDistMap(const Graph &G) + static DistMap *createDistMap(const Graph &) { throw UninitializedParameter(); }