aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/command.ml
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/command.ml')
-rw-r--r--toplevel/command.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/toplevel/command.ml b/toplevel/command.ml
index f3c2c43c2..f92ea027d 100644
--- a/toplevel/command.ml
+++ b/toplevel/command.ml
@@ -7,7 +7,7 @@
(************************************************************************)
open Pp
-open Errors
+open CErrors
open Util
open Flags
open Term
@@ -964,7 +964,7 @@ let build_wellfounded (recname,pl,n,bl,arityc,body) poly r measure notation =
| [LocalAssum (_,t); LocalAssum (_,u)], Sort (Prop Null)
when Reductionops.is_conv env !evdref t u -> t
| _, _ -> error ()
- with e when Errors.noncritical e -> error ()
+ with e when CErrors.noncritical e -> error ()
in
let measure = interp_casted_constr_evars binders_env evdref measure relargty in
let wf_rel, wf_rel_fun, measure_fn =
@@ -1108,7 +1108,7 @@ let interp_recursive isfix fixl notations =
try
let app = mkApp (delayed_force fix_proto, [|sort; t|]) in
Typing.e_solve_evars env evdref app
- with e when Errors.noncritical e -> t
+ with e when CErrors.noncritical e -> t
in
LocalAssum (id,fixprot) :: env'
else LocalAssum (id,t) :: env')