# HG changeset patch # User alpar # Date 1152702468 0 # Node ID b82e4d2b14acbf4c8ccb575f32fa73d51dee17b3 # Parent 783b1d583be3d8bdb12c8f8b2a9f5e7c44748305 ... and fix a stupid bug. diff -r 783b1d583be3 -r b82e4d2b14ac lemon/concept/graph.h --- a/lemon/concept/graph.h Wed Jul 12 11:05:00 2006 +0000 +++ b/lemon/concept/graph.h Wed Jul 12 11:07:48 2006 +0000 @@ -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