Merge pull request #74 from struktured/ring_buffer_patch

show ocaml array type concretely in `CCRingBuffer.Make` sig
This commit is contained in:
Simon Cruanes 2016-07-11 10:32:40 +02:00 committed by GitHub
commit 6a75577c83

View file

@ -210,4 +210,4 @@ module Byte : S with module Array = Array.Byte
module MakeFromArray(A : Array.S) : S with module Array = A
(** Buffer using regular arrays *)
module Make(X : sig type t end) : S with type Array.elt = X.t
module Make(X : sig type t end) : S with type Array.elt = X.t and type Array.t = X.t array