diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2006-11-15 11:50:38 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2006-11-15 11:50:38 +0000 |
commit | 7e7ce6e34929dfd97ca0946acb304151e2e16cc2 (patch) | |
tree | 1bf9ecab8a4fa36afb526e70df3733fdddcac051 | |
parent | c31bf373a9d721523195cea690f9f043f87770e1 (diff) |
PR#4156 increment AST magic numbers
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7730 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/sys.ml | 2 | ||||
-rw-r--r-- | utils/config.mlp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/sys.ml b/stdlib/sys.ml index 2c158f09e..dbb820f4f 100644 --- a/stdlib/sys.ml +++ b/stdlib/sys.ml @@ -78,4 +78,4 @@ let catch_break on = (* OCaml version string, must be in the format described in sys.mli. *) -let ocaml_version = "3.10+dev16 (2006-11-06)";; +let ocaml_version = "3.10+dev17 (2006-11-15)";; diff --git a/utils/config.mlp b/utils/config.mlp index 97e6b2256..f92362a1d 100644 --- a/utils/config.mlp +++ b/utils/config.mlp @@ -45,8 +45,8 @@ and cmo_magic_number = "Caml1999O006" and cma_magic_number = "Caml1999A007" and cmx_magic_number = "Caml1999Y010" and cmxa_magic_number = "Caml1999Z010" -and ast_impl_magic_number = "Caml1999M010" -and ast_intf_magic_number = "Caml1999N009" +and ast_impl_magic_number = "Caml1999M011" +and ast_intf_magic_number = "Caml1999N010" let load_path = ref ([] : string list) |