diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2010-04-08 03:58:41 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2010-04-08 03:58:41 +0000 |
commit | ee36e1d1c5fa2c90a86ae9b6a9a3f6d3666b4e2b (patch) | |
tree | 35b439e2c89eb0463944dd6611f567deff2a218b /ocamldoc/odoc_test.ml | |
parent | cfd555426d1d99c104669d05432f689f025ea374 (diff) |
merge branches/override
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10250 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_test.ml')
-rw-r--r-- | ocamldoc/odoc_test.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ocamldoc/odoc_test.ml b/ocamldoc/odoc_test.ml index c11352fad..a9868f6ef 100644 --- a/ocamldoc/odoc_test.ml +++ b/ocamldoc/odoc_test.ml @@ -44,7 +44,7 @@ class string_gen = None -> [] | Some i -> i.i_custom ) - method scan_type t = + method! scan_type t = match test_kinds with [] -> () | _ -> @@ -59,7 +59,7 @@ class string_gen = ); - method scan_module_pre m = + method! scan_module_pre m = p fmt "#\n# module %s:\n" m.m_name ; if self#must_display_types then ( @@ -70,7 +70,7 @@ class string_gen = ); true - method scan_module_type_pre m = + method! scan_module_type_pre m = p fmt "#\n# module type %s:\n" m.mt_name ; if self#must_display_types then ( |