diff options
| author | ppedrot | 2013-06-12 21:07:40 +0000 |
|---|---|---|
| committer | ppedrot | 2013-06-12 21:07:40 +0000 |
| commit | bea2a4f5fe5cab0abfc27492117c335a311a0c19 (patch) | |
| tree | bbc934b7c6e0eb9baddf757b7f54d86776653f5d /lib/util.ml | |
| parent | 781f44a18cb5e2adbd0b2201d435e27938761af7 (diff) | |
Changing the type of Ltac values. Now they are toplevel generic
arguments. That way we will be able to define interpretation of
tactics without referring to tactic values.
Quite ad-hoc for now.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16574 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/util.ml')
| -rw-r--r-- | lib/util.ml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/util.ml b/lib/util.ml index c2d290714b..fb968cc64f 100644 --- a/lib/util.ml +++ b/lib/util.ml @@ -34,6 +34,12 @@ let is_blank = function | ' ' | '\r' | '\t' | '\n' -> true | _ -> false +module Empty = +struct + type t + let abort (x : t) = assert false +end + (* Strings *) module String : CString.ExtS = CString |
