summaryrefslogtreecommitdiffstats
path: root/ocamldoc/odoc_merge.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocamldoc/odoc_merge.ml')
-rw-r--r--ocamldoc/odoc_merge.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ocamldoc/odoc_merge.ml b/ocamldoc/odoc_merge.ml
index 114a21e76..216102dc2 100644
--- a/ocamldoc/odoc_merge.ml
+++ b/ocamldoc/odoc_merge.ml
@@ -529,7 +529,7 @@ let rec merge_module_types merge_options mli ml =
Element_module m2 ->
if m2.m_name = m.m_name then
(
- merge_modules merge_options m m2 ;
+ ignore (merge_modules merge_options m m2);
(*
m.m_info <- merge_info_opt merge_options m.m_info m2.m_info;
m.m_loc <- { m.m_loc with loc_impl = m2.m_loc.loc_impl } ;
@@ -772,7 +772,7 @@ and merge_modules merge_options mli ml =
Element_module m2 ->
if m2.m_name = m.m_name then
(
- merge_modules merge_options m m2 ;
+ ignore (merge_modules merge_options m m2);
(*
m.m_info <- merge_info_opt merge_options m.m_info m2.m_info;
m.m_loc <- { m.m_loc with loc_impl = m2.m_loc.loc_impl } ;