rustc: Remove ~[T] from the language
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.
This commit is contained in:
parent
f9260d41d6
commit
3316b1eb7c
68 changed files with 355 additions and 823 deletions
|
@ -13,7 +13,6 @@
|
|||
#![allow(dead_assignment)]
|
||||
#![allow(unused_variable)]
|
||||
#![allow(dead_code)]
|
||||
#![allow(deprecated_owned_vector)]
|
||||
#![deny(unused_mut)]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue