[Lemon-commits] [lemon_svn] deba: r1802 - hugo/trunk/src/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:47:43 CET 2006


Author: deba
Date: Fri Apr 15 16:03:23 2005
New Revision: 1802

Modified:
   hugo/trunk/src/lemon/maps.h

Log:
Bug fix.



Modified: hugo/trunk/src/lemon/maps.h
==============================================================================
--- hugo/trunk/src/lemon/maps.h	(original)
+++ hugo/trunk/src/lemon/maps.h	Fri Apr 15 16:03:23 2005
@@ -270,7 +270,7 @@
   /// This function just returns an \ref SourceMap class.
   /// \relates SourceMap
   template <typename Graph>
-  inline SourceMap<Graph> sourceMap(const Graph&) {
+  inline SourceMap<Graph> sourceMap(const Graph& graph) {
     return SourceMap<Graph>(graph);
   } 
 
@@ -308,7 +308,7 @@
   /// This function just returns an \ref TargetMap class.
   /// \relates TargetMap
   template <typename Graph>
-  inline TargetMap<Graph> targetMap(const Graph&) {
+  inline TargetMap<Graph> targetMap(const Graph& graph) {
     return TargetMap<Graph>(graph);
   }
 



More information about the Lemon-commits mailing list