From 627a4d69b51ae78344b1cf0af845af52b244282d Mon Sep 17 00:00:00 2001 From: Hugo Heuzard Date: Fri, 9 Feb 2024 14:42:13 +0100 Subject: [PATCH] Fix magic number for OCaml 5.2 --- astlib/ast_502.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astlib/ast_502.ml b/astlib/ast_502.ml index 9842c6445..4a7fc1fde 100644 --- a/astlib/ast_502.ml +++ b/astlib/ast_502.ml @@ -1135,6 +1135,6 @@ module Parsetree = struct end module Config = struct - let ast_impl_magic_number = "Caml1999M033" - let ast_intf_magic_number = "Caml1999N033" + let ast_impl_magic_number = "Caml1999M034" + let ast_intf_magic_number = "Caml1999N034" end