librustc: Remove the const declaration form everywhere

This commit is contained in:
Patrick Walton
2013-03-22 14:00:15 -07:00
parent eba3367404
commit 85c9fc6f8f
157 changed files with 1031 additions and 1033 deletions

View File

@@ -477,10 +477,10 @@ fn run_tests(opts: &TestOpts,
// Windows tends to dislike being overloaded with threads.
#[cfg(windows)]
const sched_overcommit : uint = 1;
static sched_overcommit : uint = 1;
#[cfg(unix)]
const sched_overcommit : uint = 4u;
static sched_overcommit : uint = 4u;
fn get_concurrency() -> uint {
unsafe {