diff options
| author | Pierre-Marie Pédrot | 2018-04-06 17:50:29 +0200 |
|---|---|---|
| committer | GitHub | 2018-04-06 17:50:29 +0200 |
| commit | 67157b85f2bd4e6e6e23945686043e3479e39d67 (patch) | |
| tree | 1f78738ae74ce5540a145e7115667be483da5725 /src/tac2stdlib.ml | |
| parent | 92880aa90abe810115227e1e2dd67355d7f5c872 (diff) | |
| parent | 15a9b4a7a99498895addb74ffa9a711ea354c651 (diff) | |
Merge pull request coq/ltac2#52 from ejgallego/ltac+tacdepr
[coq] Adapt to coq/coq#6960.
Diffstat (limited to 'src/tac2stdlib.ml')
| -rw-r--r-- | src/tac2stdlib.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tac2stdlib.ml b/src/tac2stdlib.ml index 28d4967874..9ed3d5b32e 100644 --- a/src/tac2stdlib.ml +++ b/src/tac2stdlib.ml @@ -186,9 +186,9 @@ let to_strategy v = match Value.to_int v with let strategy = make_to_repr to_strategy let to_inversion_kind v = match Value.to_int v with -| 0 -> Misctypes.SimpleInversion -| 1 -> Misctypes.FullInversion -| 2 -> Misctypes.FullInversionClear +| 0 -> Inv.SimpleInversion +| 1 -> Inv.FullInversion +| 2 -> Inv.FullInversionClear | _ -> assert false let inversion_kind = make_to_repr to_inversion_kind |
