diff options
author | Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr> | 2011-03-08 08:55:18 +0000 |
---|---|---|
committer | Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr> | 2011-03-08 08:55:18 +0000 |
commit | 5d5614340d7349e1a9197c2b0d4f2d5538d8f506 (patch) | |
tree | 41204b83177c045429d6b58054d1d06a6ee3a23b /ocaml-namespaces/ocamldoc/odoc_ast.ml | |
parent | 862cc76b9370bf5c4b07cc3c4020fc367a1b397b (diff) | |
download | ocaml-namespaces.tar.gz |
namespaces: fixed camlp4 compilation, but ocamlbuild still fails to compile, no clue whynamespaces
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/namespaces@10978 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocaml-namespaces/ocamldoc/odoc_ast.ml')
-rw-r--r-- | ocaml-namespaces/ocamldoc/odoc_ast.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ocaml-namespaces/ocamldoc/odoc_ast.ml b/ocaml-namespaces/ocamldoc/odoc_ast.ml index c497794184..25f68ce394 100644 --- a/ocaml-namespaces/ocamldoc/odoc_ast.ml +++ b/ocaml-namespaces/ocamldoc/odoc_ast.ml @@ -1381,7 +1381,9 @@ module Analyser = in (0, new_env2, [ Element_module_type mt ]) - | Parsetree.Pstr_open longident -> + | Parsetree.Pstr_open (longident,Some _) -> assert false (* TODO *) + + | Parsetree.Pstr_open (longident,None) -> (* A VOIR : enrichir l'environnement quand open ? *) let ele_comments = match comment_opt with None -> [] |