diff options
| author | Pierre-Marie Pédrot | 2017-07-28 18:05:58 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2017-07-28 18:29:10 +0200 |
| commit | 8aef0199bed6fde2233704deda4116453fca869f (patch) | |
| tree | b516c942ec4f7a28edca57d4609f2f7beacfdaec /src/tac2stdlib.ml | |
| parent | 4b863ed5a4c9545ecfd25dc22a83edd3c47aab80 (diff) | |
Moving the Ltac2 FFI to a separate file.
Diffstat (limited to 'src/tac2stdlib.ml')
| -rw-r--r-- | src/tac2stdlib.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tac2stdlib.ml b/src/tac2stdlib.ml index 89a8d98693..25d83c06fb 100644 --- a/src/tac2stdlib.ml +++ b/src/tac2stdlib.ml @@ -12,12 +12,14 @@ open Tac2expr open Tac2core open Proofview.Notations +module Value = Tac2ffi + (** Standard tactics sharing their implementation with Ltac1 *) let pname s = { mltac_plugin = "ltac2"; mltac_tactic = s } let return x = Proofview.tclUNIT x -let v_unit = Tac2core.Value.of_unit () +let v_unit = Value.of_unit () let lift tac = tac <*> return v_unit |
