From 3316b1eb7c3eb520896af489dd45c4d17190d0a8 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 6 Jun 2014 10:27:49 -0700 Subject: 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 instead. --- src/libsync/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libsync') diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 9f010928256..66ca10b196c 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -26,7 +26,7 @@ html_root_url = "http://doc.rust-lang.org/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase, globs, macro_rules)] -#![deny(deprecated_owned_vector)] + #![deny(missing_doc)] #![no_std] -- cgit 1.4.1-3-g733a5