summaryrefslogtreecommitdiff
path: root/tools/ocamldep.ml
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2000-09-07 10:57:32 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2000-09-07 10:57:32 +0000
commit5dfbff7f5e922dd1db241456708ba2aca5311f4a (patch)
tree3b171d384e69c90986eb4f7d90472471cd2ce607 /tools/ocamldep.ml
parent4d30d52fb6e6661c7e2be4fb695e52fce7a84cac (diff)
downloadocaml-5dfbff7f5e922dd1db241456708ba2aca5311f4a.tar.gz
change variance syntax
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3298 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'tools/ocamldep.ml')
-rw-r--r--tools/ocamldep.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ocamldep.ml b/tools/ocamldep.ml
index 36c1366f1a..89fe9c1326 100644
--- a/tools/ocamldep.ml
+++ b/tools/ocamldep.ml
@@ -64,7 +64,7 @@ let add_type_declaration bv td =
td.ptype_cstrs;
add_opt add_type bv td.ptype_manifest;
match td.ptype_kind with
- Ptype_abstract _ -> ()
+ Ptype_abstract -> ()
| Ptype_variant cstrs ->
List.iter (fun (c, args) -> List.iter (add_type bv) args) cstrs
| Ptype_record lbls ->