diff options
| author | Pierre-Marie Pédrot | 2016-04-13 16:44:42 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-05-04 13:47:12 +0200 |
| commit | 011ac2d7db53f0df2849985ef9cc044574c0ddb0 (patch) | |
| tree | 57a60e8a95705b61c7d45fd807f05c0384f56e8f /tactics/auto.ml | |
| parent | 5da0f107cb3332d5cd87fc352aef112f6b74fc97 (diff) | |
Switching to an untyped toplevel representation for Ltac values.
Diffstat (limited to 'tactics/auto.ml')
| -rw-r--r-- | tactics/auto.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml index fc6ff03b4b..d7ce0d4c1a 100644 --- a/tactics/auto.ml +++ b/tactics/auto.ml @@ -156,7 +156,7 @@ let conclPattern concl pat tac = constr_bindings env sigma >>= fun constr_bindings -> let open Genarg in let open Geninterp in - let inj c = Val.Dyn (val_tag (topwit Constrarg.wit_constr), c) in + let inj c = Val.inject (val_tag (topwit Constrarg.wit_constr)) c in let fold id c accu = Id.Map.add id (inj c) accu in let lfun = Id.Map.fold fold constr_bindings Id.Map.empty in let ist = { lfun; extra = TacStore.empty } in |
