Skip to content

Commit 40cd1a7

Browse files
committed
rustdoc: Turn off parallel folding until I figure out what's wrong on OS X
1 parent 8b071eb commit 40cd1a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustdoc/fold.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ fn default_par_fold<T:send>(ctxt: T) -> fold<T> {
109109
// Just a convenient wrapper to convert back and forth between
110110
// parallel and sequential folds for perf testing
111111
fn default_any_fold<T:send>(ctxt: T) -> fold<T> {
112-
default_par_fold(ctxt)
112+
default_seq_fold(ctxt)
113113
}
114114

115115
fn default_seq_fold_crate<T>(
@@ -158,7 +158,7 @@ fn default_any_fold_mod<T:send>(
158158
fold: fold<T>,
159159
doc: doc::moddoc
160160
) -> doc::moddoc {
161-
default_par_fold_mod(fold, doc)
161+
default_seq_fold_mod(fold, doc)
162162
}
163163

164164
fn fold_itemtag<T>(fold: fold<T>, doc: doc::itemtag) -> doc::itemtag {

0 commit comments

Comments
 (0)