From 9ec34f8bf8a233da6040d18f06f4919a9916485f Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 12 Feb 2026 11:46:26 +0000 Subject: [PATCH] fix(CCSeq): correct conditional compilation version for init Seq.init was added in OCaml 4.14, not 4.11. This aligns the implementation with the interface which was already correctly marked with [@@@iflt 4.14]. --- src/core/CCSeq.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCSeq.ml b/src/core/CCSeq.ml index 4230e319..3224d18d 100644 --- a/src/core/CCSeq.ml +++ b/src/core/CCSeq.ml @@ -20,7 +20,7 @@ let cons a b () = Cons (a, b) let singleton x () = Cons (x, nil) [@@@endif] -[@@@iflt 4.11] +[@@@iflt 4.14] let init n f = let rec aux i () =