[Lemon-commits] [lemon_svn] alpar: r2847 - hugo/trunk/lemon/concept

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:50:46 CET 2006


Author: alpar
Date: Wed Jul 12 13:07:48 2006
New Revision: 2847

Modified:
   hugo/trunk/lemon/concept/graph.h

Log:
... and fix a stupid bug.

Modified: hugo/trunk/lemon/concept/graph.h
==============================================================================
--- hugo/trunk/lemon/concept/graph.h	(original)
+++ hugo/trunk/lemon/concept/graph.h	Wed Jul 12 13:07:48 2006
@@ -50,14 +50,14 @@
       
       ///Graphs are \e not copy constructible. Use GraphCopy() instead.
       ///
-      ListGraph(const ListGraph &) :ExtendedListGraphBase() {};
+      Graph(const Graph &) :ExtendedListGraphBase() {};
       ///\brief Assignment of \ref Graph "Graph"s to another ones are
       ///\e not allowed. Use GraphCopy() instead.
       
       ///Assignment of \ref Graph "Graph"s to another ones are
       ///\e not allowed.  Use GraphCopy() instead.
 
-      void operator=(const ListGraph &) {}
+      void operator=(const Graph &) {}
     public:
       ///\e
 



More information about the Lemon-commits mailing list