Index: src/work/jacint/max_flow_no_stack.h
===================================================================
--- src/work/jacint/max_flow_no_stack.h	(revision 714)
+++ src/work/jacint/max_flow_no_stack.h	(revision 719)
@@ -157,6 +157,6 @@
     ///\todo Document, please.
     ///
-    MaxFlowNoStack(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
-	    FlowMap& _flow) :
+    MaxFlowNoStack(const Graph& _G, Node _s, Node _t,
+		   const CapMap& _capacity, FlowMap& _flow) :
       g(&_G), s(_s), t(_t), capacity(&_capacity),
       flow(&_flow), n(_G.nodeNum()), level(_G), excess(_G,0), 
@@ -414,5 +414,6 @@
     /// Resets the edge map of the capacities to _cap.
     /// 
-    void resetCap(const CapMap& _cap) { capacity=&_cap; status=AFTER_NOTHING; }
+    void resetCap(const CapMap& _cap)
+    { capacity=&_cap; status=AFTER_NOTHING; }
 
     /// Resets the edge map of the flows to _flow.
