File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ cfg_if! {
6767 // (missing things in `libc` which is empty) so just omit everything
6868 // with an empty module
6969 #[ unstable( issue = "0" , feature = "std_internals" ) ]
70+ #[ allow( missing_docs) ]
7071 pub mod unix_ext { }
7172 } else {
7273 // On other platforms like Windows document the bare bones of unix
@@ -80,11 +81,13 @@ cfg_if! {
8081cfg_if ! {
8182 if #[ cfg( windows) ] {
8283 // On windows we'll just be documenting what's already available
84+ #[ allow( missing_docs) ]
8385 pub use self :: ext as windows_ext;
8486 } else if #[ cfg( any( target_os = "cloudabi" , target_arch = "wasm32" ) ) ] {
8587 // On CloudABI and wasm right now the shim below doesn't compile, so
8688 // just omit it
8789 #[ unstable( issue = "0" , feature = "std_internals" ) ]
90+ #[ allow( missing_docs) ]
8891 pub mod windows_ext { }
8992 } else {
9093 // 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