Skip to content

Commit 77401c4

Browse files
committed
---
yaml --- r: 23510 b: refs/heads/master c: d9a6a63 h: refs/heads/master v: v3
1 parent b57b8b5 commit 77401c4

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 77b8144295fdc19bf7700e3db9551fd190ecebcb
2+
refs/heads/master: d9a6a6365327ac156ef3102e2b7efae1b2be5934
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/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;

trunk/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;

trunk/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;

trunk/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[

trunk/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

trunk/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 {

trunk/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)