[Lemon-commits] [lemon_svn] alpar: r993 - hugo/trunk/src/hugo

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


Author: alpar
Date: Fri Jul 23 18:58:02 2004
New Revision: 993

Modified:
   hugo/trunk/src/hugo/graph_wrapper.h

Log:
Marci (and the other developpers),
please write exhaustive test code to avoid this kind of bugs...


Modified: hugo/trunk/src/hugo/graph_wrapper.h
==============================================================================
--- hugo/trunk/src/hugo/graph_wrapper.h	(original)
+++ hugo/trunk/src/hugo/graph_wrapper.h	Fri Jul 23 18:58:02 2004
@@ -207,8 +207,8 @@
   
     void clear() const { graph->clear(); }
     
-    bool forward(const Edge& e) const { graph->forward(e); }
-    bool backward(const Edge& e) const { graph->backward(e); }
+    bool forward(const Edge& e) const { return graph->forward(e); }
+    bool backward(const Edge& e) const { return graph->backward(e); }
     
     Edge opposite(const Edge& e) const { Edge(graph->opposite(e)); }
 



More information about the Lemon-commits mailing list