Skip to content

Commit 3b43724

Browse files
authored
Rollup merge of rust-lang#119935 - joboet:move_pal_personality, r=ChrisDenton
Move personality implementation out of PAL The module already follows the new convention described in rust-lang#117276. This PR also includes a small fix in the tidy pal check, that was just an oversight in rust-lang#117285.
2 parents 46d53d9 + 1d86ee9 commit 3b43724

File tree

8 files changed

+2
-1
lines changed

8 files changed

+2
-1
lines changed

std/src/sys/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
/// descriptors.
44
mod pal;
55

6+
mod personality;
7+
68
// FIXME(117276): remove this, move feature implementations into individual
79
// submodules.
810
pub use pal::*;

std/src/sys/pal/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#![allow(missing_debug_implementations)]
2424

2525
pub mod common;
26-
mod personality;
2726

2827
cfg_if::cfg_if! {
2928
if #[cfg(unix)] {
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)