diff options
| author | Gaëtan Gilbert | 2019-07-03 10:12:04 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-07-03 17:05:29 +0200 |
| commit | 6e22817c6dab5043f1bdcbb1a1c8da281d4b3d7b (patch) | |
| tree | 94b89889210aa81e22208de97d90271e797a99be /interp/decls.mli | |
| parent | bffe3e43a51420293960cc3c32845687bdee5f9b (diff) | |
declare_variable: path is always Lib.cwd()
Diffstat (limited to 'interp/decls.mli')
| -rw-r--r-- | interp/decls.mli | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/interp/decls.mli b/interp/decls.mli index 2a11a271cc..ba355999c2 100644 --- a/interp/decls.mli +++ b/interp/decls.mli @@ -60,11 +60,10 @@ type logical_kind = (** Registration and access to the table of variable *) -type variable_data = - { path:DirPath.t - ; opaque:bool - ; kind:logical_kind - } +type variable_data = { + opaque:bool; + kind:logical_kind; +} val add_variable_data : variable -> variable_data -> unit |
