about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sync/parallel.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-03-11 11:51:07 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2025-03-11 13:14:21 +1100
commit55505ab1d3da2ad201303674cb6d3ebeb53e395d (patch)
tree2be50d4dca384042dcc183304359dee402d653e1 /compiler/rustc_data_structures/src/sync/parallel.rs
parentc9c838795554901fa22ad14c2d34f270567aaa27 (diff)
downloadrust-55505ab1d3da2ad201303674cb6d3ebeb53e395d.tar.gz
rust-55505ab1d3da2ad201303674cb6d3ebeb53e395d.zip
Add `unreachable_pub` to `RUSTC_LINT_FLAGS` for `compiler/` crates.
And fix the new errors in the handful of crates that didn't have a
`#![warn(unreachable_pub)]`.
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, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/sync/parallel.rs b/compiler/rustc_data_structures/src/sync/parallel.rs
index 1ba631b8623..8ef8a3f3585 100644
--- a/compiler/rustc_data_structures/src/sync/parallel.rs
+++ b/compiler/rustc_data_structures/src/sync/parallel.rs
@@ -46,7 +46,7 @@ pub fn parallel_guard<R>(f: impl FnOnce(&ParallelGuard) -> R) -> R {
     ret
 }
 
-pub fn serial_join<A, B, RA, RB>(oper_a: A, oper_b: B) -> (RA, RB)
+fn serial_join<A, B, RA, RB>(oper_a: A, oper_b: B) -> (RA, RB)
 where
     A: FnOnce() -> RA,
     B: FnOnce() -> RB,