diff options
author | Jérôme Vouillon <Jerome.Vouillon@pps.jussieu.fr> | 1996-04-22 11:15:41 +0000 |
---|---|---|
committer | Jérôme Vouillon <Jerome.Vouillon@pps.jussieu.fr> | 1996-04-22 11:15:41 +0000 |
commit | 7974a9d8b1c8195130b2df216d6a102ca00cdf5b (patch) | |
tree | 3f51cdf262616b852002b94057a292618f522fca /stdlib/queue.ml | |
parent | 6b9559fabf7b4a669ff4b082a3eaacffd82f775f (diff) |
Extension objets.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@756 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/queue.ml')
-rw-r--r-- | stdlib/queue.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/queue.ml b/stdlib/queue.ml index c239865ea..15ec967e5 100644 --- a/stdlib/queue.ml +++ b/stdlib/queue.ml @@ -21,7 +21,7 @@ type 'a t = { mutable head: 'a queue_cell; mutable tail: 'a queue_cell } -let new () = +let create () = { head = Nil; tail = Nil } let clear q = |