diff options
| author | Christiaan Dirkx <christiaan@dirkx.email> | 2021-03-04 14:03:26 +0100 |
|---|---|---|
| committer | Christiaan Dirkx <christiaan@dirkx.email> | 2021-05-03 16:56:20 +0200 |
| commit | 0e2cd33db84a4787391989c69ed3ce70ce8c07ec (patch) | |
| tree | e15cd5bfea05ba74f138f4eac428a4b5bd4d8087 /library/std/src/os/linux | |
| parent | c825bc431ee5b815847b9bab693c59c43986fc4b (diff) | |
Cleanup `std::os`
Diffstat (limited to 'library/std/src/os/linux')
| -rw-r--r-- | library/std/src/os/linux/mod.rs | 1 | ||||
| -rw-r--r-- | library/std/src/os/linux/raw.rs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/linux/mod.rs b/library/std/src/os/linux/mod.rs index f179a524336..94438defc22 100644 --- a/library/std/src/os/linux/mod.rs +++ b/library/std/src/os/linux/mod.rs @@ -1,6 +1,7 @@ //! Linux-specific definitions. #![stable(feature = "raw_ext", since = "1.1.0")] +#![doc(cfg(target_os = "linux"))] pub mod fs; pub mod raw; diff --git a/library/std/src/os/linux/raw.rs b/library/std/src/os/linux/raw.rs index 525102212c4..5b68a7e1262 100644 --- a/library/std/src/os/linux/raw.rs +++ b/library/std/src/os/linux/raw.rs @@ -9,7 +9,6 @@ definitions" )] #![allow(deprecated)] -#![allow(missing_debug_implementations)] use crate::os::raw::c_ulong; |
