rustdoc: Turn off parallel folding until I figure out what's wrong on OS X
This commit is contained in:
parent
8b071ebe4c
commit
40cd1a7c45
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ fn default_par_fold<T:send>(ctxt: T) -> fold<T> {
|
||||||
// Just a convenient wrapper to convert back and forth between
|
// Just a convenient wrapper to convert back and forth between
|
||||||
// parallel and sequential folds for perf testing
|
// parallel and sequential folds for perf testing
|
||||||
fn default_any_fold<T:send>(ctxt: T) -> fold<T> {
|
fn default_any_fold<T:send>(ctxt: T) -> fold<T> {
|
||||||
default_par_fold(ctxt)
|
default_seq_fold(ctxt)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn default_seq_fold_crate<T>(
|
fn default_seq_fold_crate<T>(
|
||||||
|
@ -158,7 +158,7 @@ fn default_any_fold_mod<T:send>(
|
||||||
fold: fold<T>,
|
fold: fold<T>,
|
||||||
doc: doc::moddoc
|
doc: doc::moddoc
|
||||||
) -> 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 {
|
fn fold_itemtag<T>(fold: fold<T>, doc: doc::itemtag) -> doc::itemtag {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue