about summary refs log tree commit diff
path: root/src/libhexfloat/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-11 15:36:59 -0700
committerbors <bors@rust-lang.org>2014-06-11 15:36:59 -0700
commitceaeb667b327cff7ad286255d68cb5a8ba8a4d7c (patch)
treec94cde854a882cad33d8ec7fe0067b43b5cb96d7 /src/libhexfloat/lib.rs
parentf9260d41d6e37653bf71b08a041be0310098716a (diff)
parent3316b1eb7c3eb520896af489dd45c4d17190d0a8 (diff)
downloadrust-ceaeb667b327cff7ad286255d68cb5a8ba8a4d7c.tar.gz
rust-ceaeb667b327cff7ad286255d68cb5a8ba8a4d7c.zip
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.
Diffstat (limited to 'src/libhexfloat/lib.rs')
-rw-r--r--src/libhexfloat/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs
index 54bc2802b09..b181b0ca8c9 100644
--- a/src/libhexfloat/lib.rs
+++ b/src/libhexfloat/lib.rs
@@ -43,8 +43,6 @@ fn main() {
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
        html_root_url = "http://doc.rust-lang.org/")]
-
-#![deny(deprecated_owned_vector)]
 #![feature(plugin_registrar, managed_boxes)]
 
 extern crate syntax;