about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-02-21 16:15:14 -0800
committerBrian Anderson <banderson@mozilla.com>2012-02-21 16:15:14 -0800
commit40cd1a7c455afc55be01a988ae0c55f3d07fbcf5 (patch)
tree766de5548c545d2a918f9e7bd8129727be495ab1
parent8b071ebe4c7cc1e986f15e5dca00c3ee7e31db3a (diff)
rustdoc: Turn off parallel folding until I figure out what's wrong on OS X
-rw-r--r--src/rustdoc/fold.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustdoc/fold.rs b/src/rustdoc/fold.rs
index 61a28150825..4e32b675a53 100644
--- a/src/rustdoc/fold.rs
+++ b/src/rustdoc/fold.rs
@@ -109,7 +109,7 @@ fn default_par_fold<T:send>(ctxt: T) -> fold<T> {
 // Just a convenient wrapper to convert back and forth between
 // parallel and sequential folds for perf testing
 fn default_any_fold<T:send>(ctxt: T) -> fold<T> {
-    default_par_fold(ctxt)
+    default_seq_fold(ctxt)
 }
 
 fn default_seq_fold_crate<T>(
@@ -158,7 +158,7 @@ fn default_any_fold_mod<T:send>(
     fold: fold<T>,
     doc: doc::moddoc
 ) -> doc::moddoc {
-    default_par_fold_mod(fold, doc)
+    default_seq_fold_mod(fold, doc)
 }
 
 fn fold_itemtag<T>(fold: fold<T>, doc: doc::itemtag) -> doc::itemtag {