diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-10-03 19:16:27 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-10-04 15:07:49 -0700 |
| commit | edc317b8212fe1c29b5e7e2e4e260b9a4d72b447 (patch) | |
| tree | 3bdc8d5103affca408a0ff2bc2325f4869ecb375 /src/compiletest | |
| parent | e3f458e6390d66b9634e7dce4aa7e91c091aebc6 (diff) | |
| download | rust-edc317b8212fe1c29b5e7e2e4e260b9a4d72b447.tar.gz rust-edc317b8212fe1c29b5e7e2e4e260b9a4d72b447.zip | |
Remove arg vectors from main functions. Stop supporting them.
Diffstat (limited to 'src/compiletest')
| -rw-r--r-- | src/compiletest/compiletest.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiletest/compiletest.rs b/src/compiletest/compiletest.rs index 264ee61018b..55fa6740268 100644 --- a/src/compiletest/compiletest.rs +++ b/src/compiletest/compiletest.rs @@ -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); |
