1
Fork 0

Remove arg vectors from main functions. Stop supporting them.

This commit is contained in:
Brian Anderson 2012-10-03 19:16:27 -07:00
parent e3f458e639
commit edc317b821
45 changed files with 95 additions and 101 deletions

View file

@ -12,7 +12,8 @@ use common::mode_pretty;
use common::mode;
use util::logv;
fn main(++args: ~[~str]) {
fn main() {
let args = os::args();
let config = parse_config(args);
log_config(config);
run_tests(config);