tribuchet: building on jamie treefmt v2.5.0traversed 55 files emitted 32 files for processing formatted 32 files (1 changed) in 107ms M crates/gc/src/main.rs diff --git a/crates/gc/src/main.rs b/crates/gc/src/main.rs index 865ecac..b48548a 100644 --- a/crates/gc/src/main.rs +++ b/crates/gc/src/main.rs @@ -168,7 +168,9 @@ fn parse_args_from(args: Vec) -> Result { fn init_rayon() { if let Err(e) = rayon::ThreadPoolBuilder::new().build_global() { log::warn!("failed to start rayon thread pool ({e}); falling back to a single thread"); - let _ = rayon::ThreadPoolBuilder::new().num_threads(1).build_global(); + let _ = rayon::ThreadPoolBuilder::new() + .num_threads(1) + .build_global(); } }