aboutsummaryrefslogtreecommitdiff
path: root/proofs
diff options
context:
space:
mode:
Diffstat (limited to 'proofs')
-rw-r--r--proofs/logic.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/logic.ml b/proofs/logic.ml
index 136f613436..9573f54382 100644
--- a/proofs/logic.ml
+++ b/proofs/logic.ml
@@ -378,7 +378,7 @@ let convert_hyp sign sigma (id,b,bt as d) =
let env = Global.env_of_context sign in
if !check && not (is_conv env sigma bt ct) then
error ("Incorrect change of the type of "^(string_of_id id));
- if !check && not (option_compare (is_conv env sigma) b c) then
+ if !check && not (Option.Misc.compare (is_conv env sigma) b c) then
error ("Incorrect change of the body of "^(string_of_id id));
d)