diff options
| author | Maxime Dénès | 2017-12-11 11:35:17 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-12-11 11:35:17 +0100 |
| commit | a77f3a3e076e273af35ad520cae2eef0e3552811 (patch) | |
| tree | bedea2242a6c3f0e2deb6a2cd4f731f7c5014824 /pretyping | |
| parent | 5aaa240e4480ade7a5348e71a95fe3b2bc5a2c4e (diff) | |
| parent | 611da26d847888031cac4d6976b9e7e1e90cdc0e (diff) | |
Merge PR #6368: [api] Remove yet another type alias.
Diffstat (limited to 'pretyping')
| -rw-r--r-- | pretyping/reductionops.ml | 2 | ||||
| -rw-r--r-- | pretyping/reductionops.mli | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pretyping/reductionops.ml b/pretyping/reductionops.ml index 2f8e5b9643..3181766112 100644 --- a/pretyping/reductionops.ml +++ b/pretyping/reductionops.ml @@ -1283,7 +1283,7 @@ let is_transparent e k = (* Conversion utility functions *) -type conversion_test = constraints -> constraints +type conversion_test = Constraint.t -> Constraint.t let pb_is_equal pb = pb == Reduction.CONV diff --git a/pretyping/reductionops.mli b/pretyping/reductionops.mli index 34fdbe8583..7e12d263aa 100644 --- a/pretyping/reductionops.mli +++ b/pretyping/reductionops.mli @@ -260,7 +260,7 @@ val is_transparent : Environ.env -> Constant.t tableKey -> bool (** {6 Conversion Functions (uses closures, lazy strategy) } *) -type conversion_test = constraints -> constraints +type conversion_test = Constraint.t -> Constraint.t val pb_is_equal : conv_pb -> bool val pb_equal : conv_pb -> conv_pb |
