aboutsummaryrefslogtreecommitdiff
path: root/API/API.mli
diff options
context:
space:
mode:
Diffstat (limited to 'API/API.mli')
-rw-r--r--API/API.mli6
1 files changed, 5 insertions, 1 deletions
diff --git a/API/API.mli b/API/API.mli
index aa7f93bb25..2a60cd54a9 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -1287,7 +1287,7 @@ sig
mod_type_alg : module_expression option;
mod_constraints : Univ.ContextSet.t;
mod_delta : Mod_subst.delta_resolver;
- mod_retroknowledge : Retroknowledge.action list
+ mod_retroknowledge : 'a module_retroknowledge;
}
and module_signature = (module_type_body,structure_body) functorize
and module_body = module_implementation generic_module_body
@@ -1298,6 +1298,10 @@ sig
| SFBmind of mutual_inductive_body
| SFBmodule of module_body
| SFBmodtype of module_type_body
+ and _ module_retroknowledge =
+ | ModBodyRK :
+ Retroknowledge.action list -> module_implementation module_retroknowledge
+ | ModTypeRK : unit module_retroknowledge
end
module Declareops :