Skip to content

Commit b568efc

Browse files
committed
auto merge of #13020 : alexcrichton/rust/vec, r=brson
The commits have the details.
2 parents c01e2f0 + da36251 commit b568efc

File tree

183 files changed

+12
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+12
-231
lines changed

src/compiletest/compiletest.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
#[allow(non_camel_case_types)];
1515
#[deny(warnings)];
16-
#[allow(deprecated_owned_vector)];
1716

1817
extern crate test;
1918
extern crate getopts;

src/libarena/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
html_root_url = "http://static.rust-lang.org/doc/master")];
2525
#[allow(missing_doc)];
2626
#[feature(managed_boxes)];
27-
#[allow(deprecated_owned_vector)];
2827

2928
extern crate collections;
3029

src/libcollections/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
// NOTE remove the following two attributes after the next snapshot.
2626
#[allow(unrecognized_lint)];
2727
#[allow(default_type_param_usage)];
28-
#[allow(deprecated_owned_vector)];
2928

3029
extern crate rand;
3130

src/libflate/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ pub fn inflate_bytes_zlib(bytes: &[u8]) -> CVec<u8> {
9494

9595
#[cfg(test)]
9696
mod tests {
97-
#[allow(deprecated_owned_vector)];
9897
extern crate rand;
9998

10099
use super::{inflate_bytes, deflate_bytes};

src/libgetopts/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
8585
html_root_url = "http://static.rust-lang.org/doc/master")];
8686
#[deny(missing_doc)];
87-
#[allow(deprecated_owned_vector)];
8887

8988
#[feature(globs, phase)];
9089

src/libglob/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3131
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
3232
html_root_url = "http://static.rust-lang.org/doc/master")];
33-
#[allow(deprecated_owned_vector)];
3433

3534
use std::cell::Cell;
3635
use std::{cmp, os, path};

src/libgreen/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@
174174
// NB this does *not* include globs, please keep it that way.
175175
#[feature(macro_rules, phase)];
176176
#[allow(visible_private_types)];
177-
#[allow(deprecated_owned_vector)];
178177

179178
#[cfg(test)] #[phase(syntax, link)] extern crate log;
180179
extern crate rand;

src/liblog/directive.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
use std::cmp;
12-
use std::vec::Vec;
1312

1413
#[deriving(Show, Clone)]
1514
pub struct LogDirective {

src/liblog/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ use std::local_data;
126126
use std::os;
127127
use std::rt;
128128
use std::slice;
129-
use std::vec::Vec;
130129

131130
use sync::one::{Once, ONCE_INIT};
132131

src/libnative/io/file_unix.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use std::libc;
1919
use std::mem;
2020
use std::rt::rtio;
2121
use std::slice;
22-
use std::vec::Vec;
2322

2423
use io::{IoResult, retry, keep_going};
2524

0 commit comments

Comments
 (0)