aboutsummaryrefslogtreecommitdiff
path: root/vernac/vernacexpr.ml
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-09-27 13:53:59 +0200
committerEmilio Jesus Gallego Arias2018-09-27 14:12:39 +0200
commit8094c79783cbcd0a40fdb80cc032f715ebe063e5 (patch)
tree0421a07918e200c896329ccf864cb583bc005bed /vernac/vernacexpr.ml
parent523c5e41f78dbd4dfbb60d4d7c78f01a22b30aa2 (diff)
[api] Remove unnecessary type alias introduced in 8.9
This was introduced in #7820 and it is not needed indeed. As 8.9 was not released we don't need to perform a deprecation phase.
Diffstat (limited to 'vernac/vernacexpr.ml')
-rw-r--r--vernac/vernacexpr.ml7
1 files changed, 1 insertions, 6 deletions
diff --git a/vernac/vernacexpr.ml b/vernac/vernacexpr.ml
index 9cbaa8af9b..a5601d8c85 100644
--- a/vernac/vernacexpr.ml
+++ b/vernac/vernacexpr.ml
@@ -121,11 +121,6 @@ type 'a hint_info_gen = 'a Typeclasses.hint_info_gen =
type hint_info_expr = Hints.hint_info_expr
[@@ocaml.deprecated "Please use [Hints.hint_info_expr]"]
-type 'a hints_transparency_target = 'a Hints.hints_transparency_target =
- | HintsVariables
- | HintsConstants
- | HintsReferences of 'a list
-
type hints_expr = Hints.hints_expr =
| HintsResolve of (Hints.hint_info_expr * bool * Hints.reference_or_constr) list
[@ocaml.deprecated "Use the constructor in module [Hints]"]
@@ -135,7 +130,7 @@ type hints_expr = Hints.hints_expr =
[@ocaml.deprecated "Use the constructor in module [Hints]"]
| HintsUnfold of qualid list
[@ocaml.deprecated "Use the constructor in module [Hints]"]
- | HintsTransparency of qualid hints_transparency_target * bool
+ | HintsTransparency of qualid Hints.hints_transparency_target * bool
[@ocaml.deprecated "Use the constructor in module [Hints]"]
| HintsMode of qualid * Hints.hint_mode list
[@ocaml.deprecated "Use the constructor in module [Hints]"]