aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/univ.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/univ.ml b/kernel/univ.ml
index fc060940c..9fc067394 100644
--- a/kernel/univ.ml
+++ b/kernel/univ.ml
@@ -1770,9 +1770,9 @@ struct
let append x y =
if Array.length x = 0 then y
else if Array.length y = 0 then x
- else hcons (Array.append x y)
+ else Array.append x y
- let of_array a = hcons a
+ let of_array a = a
let to_array a = a