]> git.lizzy.rs Git - rust.git/commit
auto merge of #14703 : alexcrichton/rust/no-more-owned-vectors, r=brson
authorbors <bors@rust-lang.org>
Wed, 11 Jun 2014 22:36:59 +0000 (15:36 -0700)
committerbors <bors@rust-lang.org>
Wed, 11 Jun 2014 22:36:59 +0000 (15:36 -0700)
commitceaeb667b327cff7ad286255d68cb5a8ba8a4d7c
treec94cde854a882cad33d8ec7fe0067b43b5cb96d7
parentf9260d41d6e37653bf71b08a041be0310098716a
parent3316b1eb7c3eb520896af489dd45c4d17190d0a8
auto merge of #14703 : alexcrichton/rust/no-more-owned-vectors, r=brson

The following features have been removed

* `box [a, b, c]`
* `~[a, b, c]`
* `box [a, ..N]`
* `~[a, ..N]`
* `~[T]` (as a type)
* deprecated_owned_vector lint

All users of ~[T] should move to using Vec<T> instead.