Skip to content

Commit 3d605a6

Browse files
committed
---
yaml --- r: 32172 b: refs/heads/dist-snap c: d9a6a63 h: refs/heads/master v: v3
1 parent 27ee71a commit 3d605a6

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
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: 77b8144295fdc19bf7700e3db9551fd190ecebcb
10+
refs/heads/dist-snap: d9a6a6365327ac156ef3102e2b7efae1b2be5934
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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)