summaryrefslogtreecommitdiffstats
path: root/stdlib/array.ml
diff options
context:
space:
mode:
authorAlain Frisch <alain@frisch.fr>2012-05-29 12:31:28 +0000
committerAlain Frisch <alain@frisch.fr>2012-05-29 12:31:28 +0000
commit4dcc69b52cd2fb179d278339ba3dcf56be9e642d (patch)
tree98f16f38e5b9edc7aa794163f00d57d279d02a2c /stdlib/array.ml
parent5035a24bd0451a72e6230d6fa2bd663b2053211b (diff)
Detect (and fix some) useless recursive flags.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12501 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/array.ml')
-rw-r--r--stdlib/array.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/array.ml b/stdlib/array.ml
index 076a3af03..37c663dc1 100644
--- a/stdlib/array.ml
+++ b/stdlib/array.ml
@@ -147,7 +147,7 @@ let sort cmp a =
set a i e;
end;
in
- let rec trickle l i e = try trickledown l i e with Bottom i -> set a i e in
+ let trickle l i e = try trickledown l i e with Bottom i -> set a i e in
let rec bubbledown l i =
let j = maxson l i in
set a i (get a j);