diff options
| author | Emilio Jesus Gallego Arias | 2018-11-07 13:55:14 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-11-07 13:56:12 +0100 |
| commit | 6cc40e73879aec50227c9576100a381cc11ade30 (patch) | |
| tree | f8ca5d6e658e20660ff973a98574e83f9e90f427 /tuto3/src | |
| parent | f8b340ee5d1adce859f5b394c736f7cd60e0b9fb (diff) | |
[warnings] Fix couple of warnings related to API..
Changes in declare following @SkySkimmer's advice.
Diffstat (limited to 'tuto3/src')
| -rw-r--r-- | tuto3/src/tuto_tactic.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuto3/src/tuto_tactic.ml b/tuto3/src/tuto_tactic.ml index cb73a4486b..9818867621 100644 --- a/tuto3/src/tuto_tactic.ml +++ b/tuto3/src/tuto_tactic.ml @@ -15,7 +15,7 @@ let collect_constants () = let gr_R = find_reference "Tuto3" ["Coq"; "Init"; "Datatypes"] "pair" in let gr_P = find_reference "Tuto3" ["Coq"; "Init"; "Datatypes"] "prod" in let gr_U = find_reference "Tuto3" ["Tuto3"; "Data"] "uncover" in - constants := List.map (fun x -> of_constr (constr_of_global x)) + constants := List.map (fun x -> of_constr (constr_of_monomorphic_global x)) [gr_H; gr_M; gr_R; gr_P; gr_U]; !constants else |
