aboutsummaryrefslogtreecommitdiff
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorMaxime Dénès2018-03-04 17:24:59 +0100
committerMaxime Dénès2018-03-04 17:24:59 +0100
commit78551857a41a57607ecfb3fd010e0a9755f47cea (patch)
tree431275a5729dddb5ca4fa2d9199b8640aa4f45af /lib/flags.ml
parentdffc6a20eb1a0636904164e00b5963ed96f774c4 (diff)
parent2f60c1bab0ce391aa60cc6c387b9d36a1ae70905 (diff)
Merge PR #6791: Removing compatibility support for versions older than 8.5.
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 5da1310206..12ed2a4503 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -67,17 +67,11 @@ 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_5 | V8_6 | V8_7 | Current
+type compat_version = V8_6 | V8_7 | Current
let compat_version = ref Current
let version_compare v1 v2 = match v1, v2 with
- | VOld, VOld -> 0
- | VOld, _ -> -1
- | _, VOld -> 1
- | V8_5, V8_5 -> 0
- | V8_5, _ -> -1
- | _, V8_5 -> 1
| V8_6, V8_6 -> 0
| V8_6, _ -> -1
| _, V8_6 -> 1
@@ -90,8 +84,6 @@ let version_strictly_greater v = version_compare !compat_version v > 0
let version_less_or_equal v = not (version_strictly_greater v)
let pr_version = function
- | VOld -> "old"
- | V8_5 -> "8.5"
| V8_6 -> "8.6"
| V8_7 -> "8.7"
| Current -> "current"