summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/algorithms/forloops.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/algorithms/forloops.c')
-rw-r--r--misc/examples/algorithms/forloops.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/misc/examples/algorithms/forloops.c b/misc/examples/algorithms/forloops.c
index 300eee18..a83d4a53 100644
--- a/misc/examples/algorithms/forloops.c
+++ b/misc/examples/algorithms/forloops.c
@@ -41,10 +41,6 @@ int main(void)
c_foreach (i, IVec, vec)
printf(" %d", *i.ref);
- puts("\n\nc_foreach_r: reverse");
- c_foreach_rv (i, IVec, vec)
- printf(" %d", *i.ref);
-
puts("\n\nc_foreach in map:");
c_foreach (i, IMap, map)
printf(" (%d %d)", i.ref->first, i.ref->second);