[Lemon-commits] deba: r3418 - lemon/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Tue Dec 11 18:42:50 CET 2007


Author: deba
Date: Tue Dec 11 18:42:49 2007
New Revision: 3418

Modified:
   lemon/trunk/lemon/graph_utils.h

Log:
Avoiding warnings



Modified: lemon/trunk/lemon/graph_utils.h
==============================================================================
--- lemon/trunk/lemon/graph_utils.h	(original)
+++ lemon/trunk/lemon/graph_utils.h	Tue Dec 11 18:42:49 2007
@@ -2525,12 +2525,12 @@
 
   protected:
 
-    class AutoNodeMap : public DefaultMap<Graph, Node, Edge> {
+    class AutoNodeMap : public DefaultMap<G, Node, Edge> {
     public:
 
-      typedef DefaultMap<Graph, Node, Edge> Parent;
+      typedef DefaultMap<G, Node, Edge> Parent;
 
-      AutoNodeMap(const Graph& graph) : Parent(graph, INVALID) {}
+      AutoNodeMap(const G& graph) : Parent(graph, INVALID) {}
       
       virtual void add(const Node& node) {
 	Parent::add(node);



More information about the Lemon-commits mailing list