File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ cfg_if! {
67
67
// (missing things in `libc` which is empty) so just omit everything
68
68
// with an empty module
69
69
#[ unstable( issue = "0" , feature = "std_internals" ) ]
70
+ #[ allow( missing_docs) ]
70
71
pub mod unix_ext { }
71
72
} else {
72
73
// On other platforms like Windows document the bare bones of unix
@@ -80,11 +81,13 @@ cfg_if! {
80
81
cfg_if ! {
81
82
if #[ cfg( windows) ] {
82
83
// On windows we'll just be documenting what's already available
84
+ #[ allow( missing_docs) ]
83
85
pub use self :: ext as windows_ext;
84
86
} else if #[ cfg( any( target_os = "cloudabi" , target_arch = "wasm32" ) ) ] {
85
87
// On CloudABI and wasm right now the shim below doesn't compile, so
86
88
// just omit it
87
89
#[ unstable( issue = "0" , feature = "std_internals" ) ]
90
+ #[ allow( missing_docs) ]
88
91
pub mod windows_ext { }
89
92
} else {
90
93
// On all other platforms (aka linux/osx/etc) then pull in a "minimal"
You can’t perform that action at this time.
0 commit comments