Fix build breakage

This commit is contained in:
Brian Anderson 2012-08-26 13:51:10 -07:00
parent 77b8144295
commit d9a6a63653
7 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,5 @@
import common::config;
import io::ReaderUtil;
export load_errors;
export expected_error;

View File

@ -2,6 +2,7 @@ import option;
import str;
import common::config;
import io::ReaderUtil;
export test_props;
export load_props;

View File

@ -1,7 +1,6 @@
import run::spawn_process;
import io::WriterUtil;
import io::{ReaderUtil, WriterUtil};
import libc::{c_int, pid_t};
import pipes::chan;
export run;

View File

@ -6,7 +6,7 @@ import std::time::precise_time_s;
import std::map;
import std::map::{map, hashmap};
import io::Reader;
import io::{Reader, ReaderUtil};
fn main(argv: ~[~str]) {
#macro[

View File

@ -6,7 +6,7 @@ use std;
import std::map;
import std::map::hashmap;
import std::sort;
import io::ReaderUtil;
import pipes::{stream, port, chan};
// given a map, print a sorted version of it

View File

@ -6,6 +6,7 @@ use std;
import std::map;
import std::map::hashmap;
import std::sort;
import io::ReaderUtil;
// given a map, print a sorted version of it
fn sort_and_fmt(mm: hashmap<~[u8], uint>, total: uint) -> ~str {

View File

@ -1,7 +1,7 @@
use std;
import std::bitv;
import io::WriterUtil;
import io::{ReaderUtil, WriterUtil};
// Computes a single solution to a given 9x9 sudoku
//