Skip to content

Commit b09c296

Browse files
committed
Make std::os::tvos, std::os::visionos and std::os::watchos public
This is mostly done to fix dead code warnings, but also because they _should_ be public, just like `std::os::ios` and `std::os::macos` is.
1 parent d7a9e47 commit b09c296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/os/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,19 +148,19 @@ pub mod solaris;
148148
pub mod solid;
149149
#[cfg(target_os = "tvos")]
150150
#[path = "apple/mod.rs"]
151-
pub(crate) mod tvos;
151+
pub mod tvos;
152152
#[cfg(target_os = "uefi")]
153153
pub mod uefi;
154154
#[cfg(target_os = "visionos")]
155155
#[path = "apple/mod.rs"]
156-
pub(crate) mod visionos;
156+
pub mod visionos;
157157
#[cfg(target_os = "vita")]
158158
pub mod vita;
159159
#[cfg(target_os = "vxworks")]
160160
pub mod vxworks;
161161
#[cfg(target_os = "watchos")]
162162
#[path = "apple/mod.rs"]
163-
pub(crate) mod watchos;
163+
pub mod watchos;
164164
#[cfg(target_os = "xous")]
165165
pub mod xous;
166166

0 commit comments

Comments
 (0)