Skip to content

Commit 406560f

Browse files
committed
---
yaml --- r: 167546 b: refs/heads/snap-stage3 c: be11aa6 h: refs/heads/master v: v3
1 parent e7e3752 commit 406560f

File tree

489 files changed

+5211
-5871
lines changed

Some content is hidden

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

489 files changed

+5211
-5871
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 023dfb0c898d851dee6ace2f8339b73b5287136b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 009ec5d2b0c4ab0e7dc7ab2f6b15754b4da14caf
4+
refs/heads/snap-stage3: be11aa6d70c90185db715328ef2b24a3621cb969
55
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/compiletest/compiletest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ extern crate regex;
2222
use std::os;
2323
use std::io;
2424
use std::io::fs;
25-
use std::str::{FromStr, from_str};
26-
use std::thunk::Thunk;
25+
use std::str::FromStr;
26+
use std::thunk::{Thunk};
2727
use getopts::{optopt, optflag, reqopt};
2828
use common::Config;
2929
use common::{Pretty, DebugInfoGdb, DebugInfoLldb, Codegen};

branches/snap-stage3/src/doc/guide-ffi.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,6 @@ them.
450450
451451
~~~no_run
452452
extern crate libc;
453-
454-
use std::c_str::ToCStr;
455453
use std::ptr;
456454
457455
#[link(name = "readline")]

branches/snap-stage3/src/doc/guide-tasks.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ getting the result later.
206206
The basic example below illustrates this.
207207

208208
```{rust,ignore}
209-
# #![allow(deprecated)]
210209
use std::sync::Future;
211210
212211
# fn main() {
@@ -234,7 +233,6 @@ Here is another example showing how futures allow you to background
234233
computations. The workload will be distributed on the available cores.
235234

236235
```{rust,ignore}
237-
# #![allow(deprecated)]
238236
# use std::num::Float;
239237
# use std::sync::Future;
240238
fn partial_sum(start: uint) -> f64 {

0 commit comments

Comments
 (0)