Skip to content

Commit cb052d5

Browse files
committed
std: move personality implementation out of PAL
1 parent 1d8d7b1 commit cb052d5

File tree

8 files changed

+2
-1
lines changed

8 files changed

+2
-1
lines changed

library/std/src/sys/mod.rs

+2
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::*;

library/std/src/sys/pal/mod.rs

-1
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)] {

0 commit comments

Comments
 (0)