about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sync/parallel.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-06-22 17:35:36 +0200
committerGitHub <noreply@github.com>2025-06-22 17:35:36 +0200
commitf1fa46d3ba5322cc49c0eadf4afb0844998ca7db (patch)
tree849d20a3e555a047c6962f393c3927988465d0af /compiler/rustc_data_structures/src/sync/parallel.rs
parent0f89e61c4dd4f274029673d2963465cbf73d58c2 (diff)
parentd092dc9381bd6f09017c4b09777df4537999b952 (diff)
downloadrust-f1fa46d3ba5322cc49c0eadf4afb0844998ca7db.tar.gz
rust-f1fa46d3ba5322cc49c0eadf4afb0844998ca7db.zip
Rollup merge of #142868 - klensy:dc, r=oli-obk
remove few allow(dead_code)

Few from serial/parallel compiler leftovers and few from bootstrap.
Diffstat (limited to 'compiler/rustc_data_structures/src/sync/parallel.rs')
-rw-r--r--compiler/rustc_data_structures/src/sync/parallel.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/sync/parallel.rs b/compiler/rustc_data_structures/src/sync/parallel.rs
index ff4b60a1031..b515c0bee8a 100644
--- a/compiler/rustc_data_structures/src/sync/parallel.rs
+++ b/compiler/rustc_data_structures/src/sync/parallel.rs
@@ -1,8 +1,6 @@
 //! This module defines parallel operations that are implemented in
 //! one way for the serial compiler, and another way the parallel compiler.
 
-#![allow(dead_code)]
-
 use std::any::Any;
 use std::panic::{AssertUnwindSafe, catch_unwind, resume_unwind};