# HG changeset patch
# User marci
# Date 1084547958 0
# Node ID a11a4377a81655d30b302e19695b177da1d5edc7
# Parent  2153dd45937abcf2496196af1a0bfd5f143dbece
misc

diff -r 2153dd45937a -r a11a4377a816 src/hugo/for_each_macros.h
--- a/src/hugo/for_each_macros.h	Fri May 14 15:01:21 2004 +0000
+++ b/src/hugo/for_each_macros.h	Fri May 14 15:19:18 2004 +0000
@@ -17,6 +17,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::NodeIt n;
   /// FOR_EACH_GLOB(n, g) {
   /// ...
@@ -33,6 +34,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::Node v;
   /// Graph::OutEdgeIt e;
   /// FOR_EACH_INC_GLOB(e, g, v) {
@@ -40,6 +42,7 @@
   /// }
   /// typedef BipartiteGraph<Graph> BGraph;
   /// BGraph h;
+  /// ...
   /// BGraph::ClassNodeIt n;
   /// FOR_EACH_INC_GLOB(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
   /// ...
@@ -120,6 +123,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// FOR_EACH_LOC(Graph::NodeIt, n, g) {
   /// ...
   /// }
@@ -134,12 +138,14 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::Node v;
   /// FOR_EACH_INC_LOC(Graph::OutEdgeIt, e, g, v) {
   /// ...
   /// }
   /// typedef BipartiteGraph<Graph> BGraph;
   /// BGraph h;
+  /// ...
   /// FOR_EACH_INC_LOC(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
   /// ...
   /// }