diff -r 4cf25c61ea65 -r a907fb95f1e0 lemon/concept/ugraph.h --- a/lemon/concept/ugraph.h Tue Jul 04 19:06:47 2006 +0000 +++ b/lemon/concept/ugraph.h Wed Jul 05 16:59:45 2006 +0000 @@ -107,8 +107,6 @@ /// \note This operator only have to define some strict ordering of /// the items; this order has nothing to do with the iteration /// ordering of the items. - /// - /// \bug This is a technical requirement. Do we really need this? bool operator<(Node) const { return false; } }; @@ -199,8 +197,6 @@ /// \note This operator only have to define some strict ordering of /// the items; this order has nothing to do with the iteration /// ordering of the items. - /// - /// \bug This is a technical requirement. Do we really need this? bool operator<(UEdge) const { return false; } }; @@ -337,8 +333,6 @@ /// \note This operator only have to define some strict ordering of /// the items; this order has nothing to do with the iteration /// ordering of the items. - /// - /// \bug This is a technical requirement. Do we really need this? bool operator<(Edge) const { return false; } };