diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2016-09-19 20:00:19 +0200 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2016-09-21 12:56:26 +0200 |
commit | 9c352481f1a2d3a9c2e0e1f084d1c65521a0c438 (patch) | |
tree | 886353d2523c153d177eda3ccf3fde6dfed7634e /tactics | |
parent | 424de98770e1fd8c307a7cd0053c268a48532463 (diff) |
Merging Stdarg and Constrarg.
There was no reason to keep them separate since quite a long time. Historically,
they were making Genarg depend or not on upper strata of the code, but since
it was moved to lib/ this is not justified anymore.
Diffstat (limited to 'tactics')
-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 b85328402..1cb71da69 100644 --- a/tactics/auto.ml +++ b/tactics/auto.ml @@ -145,7 +145,7 @@ let conclPattern concl pat tac = constr_bindings env sigma >>= fun constr_bindings -> let open Genarg in let open Geninterp in - let inj c = match val_tag (topwit Constrarg.wit_constr) with + let inj c = match val_tag (topwit Stdarg.wit_constr) with | Val.Base tag -> Val.Dyn (tag, c) | _ -> assert false in |