aboutsummaryrefslogtreecommitdiff
path: root/lib/iStream.ml
diff options
context:
space:
mode:
authorPierre Letouzey2014-03-05 16:50:04 +0100
committerPierre Letouzey2014-03-05 16:57:45 +0100
commit8fc2509f354b02ec4e0a3eb6fabc329109686c47 (patch)
treebf7f0738e36d861d57029985ea4f2d3e73d23c15 /lib/iStream.ml
parentadfd437f8ae6aaf893119fa4730edecf067dede7 (diff)
Remove some dead-code (thanks to ocaml warnings)
The removed code isn't used locally and isn't exported in the signature
Diffstat (limited to 'lib/iStream.ml')
-rw-r--r--lib/iStream.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/iStream.ml b/lib/iStream.ml
index 065155f081..da54d9f7b8 100644
--- a/lib/iStream.ml
+++ b/lib/iStream.ml
@@ -26,7 +26,7 @@ let rec force s = match Lazy.force s with
let force s = force s; s
-let rec is_empty s = match Lazy.force s with
+let is_empty s = match Lazy.force s with
| Nil -> true
| Cons (_, _) -> false