summaryrefslogtreecommitdiff
path: root/debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch')
-rw-r--r--debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch b/debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch
new file mode 100644
index 00000000..3e5c5e6d
--- /dev/null
+++ b/debian/patches/0003-Fix-compilation-with-OCaml-4.02.patch
@@ -0,0 +1,22 @@
+From: Stephane Glondu <steph@glondu.net>
+Date: Wed, 17 Jun 2015 15:36:10 +0200
+Subject: Fix compilation with OCaml 4.02
+
+---
+ kernel/univ.ml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/kernel/univ.ml b/kernel/univ.ml
+index 822f6ca..53342dd 100644
+--- a/kernel/univ.ml
++++ b/kernel/univ.ml
+@@ -226,7 +226,7 @@ let reprleq g arcu =
+
+
+ (* between : UniverseLevel.t -> canonical_arc -> canonical_arc list *)
+-(* between u v = {w|u<=w<=v, w canonical} *)
++(* between u v = (w|u<=w<=v, w canonical) *)
+ (* between is the most costly operation *)
+
+ let between g arcu arcv =
+--