From 36fc004a7867a171b6838f5c2f94d6e2462460b3 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Sat, 14 Feb 2026 16:57:26 +0100 Subject: [PATCH] fix clippy warnings --- src/config.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/config.rs b/src/config.rs index 5f5de54..a48bc60 100644 --- a/src/config.rs +++ b/src/config.rs @@ -584,12 +584,6 @@ fn default_true() -> bool { true } -fn num_cpus() -> usize { - std::thread::available_parallelism() - .map(|p| p.get()) - .unwrap_or(4) -} - // ============================================================================ // Video Configuration // ============================================================================