Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 04b02439 authored by BESSON Frederic's avatar BESSON Frederic
Browse files

Merge branch 'depr-versions' into 'master'

Adapt to coq/coq#17664 (goptions use Deprecation.t option instead of bool)

See merge request !11
parents 03824e07 91f66356
No related branches found
No related tags found
1 merge request!11Adapt to coq/coq#17664 (goptions use Deprecation.t option instead of bool)
Pipeline #845212 failed
......@@ -5,25 +5,24 @@ open Constr
module P = ProverPatch
let show_theory_time =
Goptions.declare_bool_option_and_ref ~depr:false
~stage:Interp
let { Goptions.get = show_theory_time } =
Goptions.declare_bool_option_and_ref
~key:["Itauto"; "Theory"; "Time"]
~value:false
()
let thy_time = ref 0.
let debug = Goptions.declare_bool_option_and_ref ~depr:false
~stage:Interp
~key:["Itauto"; "Debug"]
~value:false
let { Goptions.get = debug } = Goptions.declare_bool_option_and_ref
~key:["Itauto"; "Debug"]
~value:false
()
let use_classic = Goptions.declare_bool_option_and_ref ~depr:false
~stage:Interp
~key:["Itauto"; "Classic"]
~value:false
let { Goptions.get = use_classic } = Goptions.declare_bool_option_and_ref
~key:["Itauto"; "Classic"]
~value:false
()
let pr_constr env evd e = Printer.pr_econstr_env env evd e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment