about summary refs log tree commit diff
path: root/src/libstd/par.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/par.rs')
-rw-r--r--src/libstd/par.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/par.rs b/src/libstd/par.rs
index 17ae48e03b9..6f69ac4e1bd 100644
--- a/src/libstd/par.rs
+++ b/src/libstd/par.rs
@@ -22,10 +22,10 @@ use future_spawn = future::spawn;
  * The maximum number of tasks this module will spawn for a single
  * operation.
  */
-const max_tasks : uint = 32u;
+static max_tasks : uint = 32u;
 
 /// The minimum number of elements each task will process.
-const min_granularity : uint = 1024u;
+static min_granularity : uint = 1024u;
 
 /**
  * An internal helper to map a function over a large vector and