aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-11-22 17:12:58 +0100
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2017-06-14 07:19:50 +0200
commitdaf5335b18c926d7130cd28e50f00cc49c4011f6 (patch)
treef45377ea4597a3ba7699fa2e8b77046c7adc9b75 /lib/flags.ml
parent571c319ed536cb2757176d3ae4007a75f5d3b04d (diff)
Remove support for Coq 8.3.
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index c4a97bd12..d738e3df1 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -106,7 +106,7 @@ let we_are_parsing = ref false
(* Current means no particular compatibility consideration.
For correct comparisons, this constructor should remain the last one. *)
-type compat_version = VOld | V8_3 | V8_4 | V8_5 | V8_6 | Current
+type compat_version = VOld | V8_4 | V8_5 | V8_6 | Current
let compat_version = ref Current
@@ -114,9 +114,6 @@ let version_compare v1 v2 = match v1, v2 with
| VOld, VOld -> 0
| VOld, _ -> -1
| _, VOld -> 1
- | V8_3, V8_3 -> 0
- | V8_3, _ -> -1
- | _, V8_3 -> 1
| V8_4, V8_4 -> 0
| V8_4, _ -> -1
| _, V8_4 -> 1
@@ -133,7 +130,6 @@ let version_less_or_equal v = not (version_strictly_greater v)
let pr_version = function
| VOld -> "old"
- | V8_3 -> "8.3"
| V8_4 -> "8.4"
| V8_5 -> "8.5"
| V8_6 -> "8.6"