[Lemon-commits] [lemon_svn] deba: r2761 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:55:02 CET 2006
Author: deba
Date: Thu May 18 10:04:51 2006
New Revision: 2761
Modified:
hugo/trunk/lemon/dfs.h
Log:
Erasing unused parameter names
Omitting Warning
Modified: hugo/trunk/lemon/dfs.h
==============================================================================
--- hugo/trunk/lemon/dfs.h (original)
+++ hugo/trunk/lemon/dfs.h Thu May 18 10:04:51 2006
@@ -248,7 +248,7 @@
template <class T>
struct DefDistMapTraits : public Traits {
typedef T DistMap;
- static DistMap *createDistMap(const Graph &G)
+ static DistMap *createDistMap(const Graph &)
{
throw UninitializedParameter();
}
@@ -265,7 +265,7 @@
template <class T>
struct DefReachedMapTraits : public Traits {
typedef T ReachedMap;
- static ReachedMap *createReachedMap(const Graph &G)
+ static ReachedMap *createReachedMap(const Graph &)
{
throw UninitializedParameter();
}
@@ -282,7 +282,7 @@
template <class T>
struct DefProcessedMapTraits : public Traits {
typedef T ProcessedMap;
- static ProcessedMap *createProcessedMap(const Graph &G)
+ static ProcessedMap *createProcessedMap(const Graph &)
{
throw UninitializedParameter();
}
More information about the Lemon-commits
mailing list