From 40cd1a7c455afc55be01a988ae0c55f3d07fbcf5 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 21 Feb 2012 16:15:14 -0800 Subject: [PATCH] rustdoc: Turn off parallel folding until I figure out what's wrong on OS X --- src/rustdoc/fold.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rustdoc/fold.rs b/src/rustdoc/fold.rs index 61a281508253..4e32b675a531 100644 --- a/src/rustdoc/fold.rs +++ b/src/rustdoc/fold.rs @@ -109,7 +109,7 @@ fn default_par_fold(ctxt: T) -> fold { // Just a convenient wrapper to convert back and forth between // parallel and sequential folds for perf testing fn default_any_fold(ctxt: T) -> fold { - default_par_fold(ctxt) + default_seq_fold(ctxt) } fn default_seq_fold_crate( @@ -158,7 +158,7 @@ fn default_any_fold_mod( fold: fold, doc: doc::moddoc ) -> doc::moddoc { - default_par_fold_mod(fold, doc) + default_seq_fold_mod(fold, doc) } fn fold_itemtag(fold: fold, doc: doc::itemtag) -> doc::itemtag {