From 9238daf7c312d8b9bc69b8585f60b1da954ce0fe Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 7 Aug 2018 03:23:11 -0500 Subject: [PATCH] fix: compat with 4.07 --- src/core/CCArray.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCArray.mli b/src/core/CCArray.mli index 5c10ad66..e7d1260b 100644 --- a/src/core/CCArray.mli +++ b/src/core/CCArray.mli @@ -13,7 +13,7 @@ type 'a printer = Format.formatter -> 'a -> unit (** {2 Arrays} *) -include module type of struct include Array end +include module type of Array type 'a t = 'a array (** The type for arrays *)