We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d692ab4 commit d259f43Copy full SHA for d259f43
src/libstd/sys/mod.rs
@@ -67,6 +67,7 @@ cfg_if! {
67
// (missing things in `libc` which is empty) so just omit everything
68
// with an empty module
69
#[unstable(issue = "0", feature = "std_internals")]
70
+ #[allow(missing_docs)]
71
pub mod unix_ext {}
72
} else {
73
// On other platforms like Windows document the bare bones of unix
@@ -80,6 +81,7 @@ cfg_if! {
80
81
cfg_if! {
82
if #[cfg(windows)] {
83
// On windows we'll just be documenting what's already available
84
85
pub use self::ext as windows_ext;
86
} else if #[cfg(any(target_os = "cloudabi", target_arch = "wasm32"))] {
87
// On CloudABI and wasm right now the shim below doesn't compile, so
0 commit comments