Skip to content

Commit 8e34f45

Browse files
committed
---
yaml --- r: 58071 b: refs/heads/auto c: 18bf9bd h: refs/heads/master i: 58069: 97bea9e 58067: 4635538 58063: 8571b64 v: v3
1 parent d52a1d1 commit 8e34f45

File tree

6 files changed

+4
-11
lines changed

6 files changed

+4
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 5fb5a94118399e50c50f25586266c317ee5ba69b
17+
refs/heads/auto: 18bf9bd55aa87d3da19e343241d1171414e2fc92
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/src/libstd/arena.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
// to waste time running the destructors of POD.
3434

3535
use list::{MutList, MutCons, MutNil};
36-
use list;
3736

3837
use core::at_vec;
3938
use core::cast::{transmute, transmute_mut_region};
@@ -79,7 +78,7 @@ struct Chunk {
7978
}
8079

8180
pub struct Arena {
82-
// The head is seperated out from the list as a unbenchmarked
81+
// The head is separated out from the list as a unbenchmarked
8382
// microoptimization, to avoid needing to case on the list to
8483
// access the head.
8584
priv head: Chunk,

branches/auto/src/libstd/future.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
use core::cast;
2525
use core::cell::Cell;
26-
use core::comm::{ChanOne, PortOne, oneshot, send_one};
26+
use core::comm::{PortOne, oneshot, send_one};
2727
use core::pipes::recv;
2828
use core::task;
2929

branches/auto/src/libstd/net_tcp.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
//! High-level interface to libuv's TCP functionality
1212
// FIXME #4425: Need FFI fixes
1313

14-
#[allow(deprecated_mode)];
15-
1614
use future;
1715
use future_spawn = future::spawn;
1816
use ip = net_ip;

branches/auto/src/libstd/net_url.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
//! Types/fns concerning URLs (see RFC 3986)
1212
13-
#[allow(deprecated_mode)];
14-
1513
use core::cmp::Eq;
1614
use core::io::{Reader, ReaderUtil};
1715
use core::io;

branches/auto/src/libstd/workcache.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#[allow(deprecated_mode)];
12-
1311
use json;
1412
use sha1;
1513
use serialize::{Encoder, Encodable, Decoder, Decodable};
1614
use sort;
1715

1816
use core::cell::Cell;
1917
use core::cmp;
20-
use core::comm::{ChanOne, PortOne, oneshot, send_one};
18+
use core::comm::{PortOne, oneshot, send_one};
2119
use core::either::{Either, Left, Right};
2220
use core::hashmap::HashMap;
2321
use core::io;

0 commit comments

Comments
 (0)