Skip to content

Commit 3d31673

Browse files
committed
---
yaml --- r: 28088 b: refs/heads/try c: d9a6a63 h: refs/heads/master v: v3
1 parent 93d9993 commit 3d31673

File tree

8 files changed

+8
-6
lines changed

8 files changed

+8
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: 77b8144295fdc19bf7700e3db9551fd190ecebcb
5+
refs/heads/try: d9a6a6365327ac156ef3102e2b7efae1b2be5934
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/src/compiletest/errors.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import common::config;
2+
import io::ReaderUtil;
23

34
export load_errors;
45
export expected_error;

branches/try/src/compiletest/header.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import option;
22
import str;
33

44
import common::config;
5+
import io::ReaderUtil;
56

67
export test_props;
78
export load_props;

branches/try/src/compiletest/procsrv.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import run::spawn_process;
2-
import io::WriterUtil;
2+
import io::{ReaderUtil, WriterUtil};
33
import libc::{c_int, pid_t};
4-
54
import pipes::chan;
65

76
export run;

branches/try/src/test/bench/core-std.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import std::time::precise_time_s;
66
import std::map;
77
import std::map::{map, hashmap};
88

9-
import io::Reader;
9+
import io::{Reader, ReaderUtil};
1010

1111
fn main(argv: ~[~str]) {
1212
#macro[

branches/try/src/test/bench/shootout-k-nucleotide-pipes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std;
66
import std::map;
77
import std::map::hashmap;
88
import std::sort;
9-
9+
import io::ReaderUtil;
1010
import pipes::{stream, port, chan};
1111

1212
// given a map, print a sorted version of it

branches/try/src/test/bench/shootout-k-nucleotide.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use std;
66
import std::map;
77
import std::map::hashmap;
88
import std::sort;
9+
import io::ReaderUtil;
910

1011
// given a map, print a sorted version of it
1112
fn sort_and_fmt(mm: hashmap<~[u8], uint>, total: uint) -> ~str {

branches/try/src/test/bench/sudoku.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std;
22

33
import std::bitv;
4-
import io::WriterUtil;
4+
import io::{ReaderUtil, WriterUtil};
55

66
// Computes a single solution to a given 9x9 sudoku
77
//

0 commit comments

Comments
 (0)