diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-29 21:54:16 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-09-27 11:29:49 +0200 |
| commit | fccba2c341b65b62f513c0b7ee8842f134f3cbcd (patch) | |
| tree | 5729ba92e55dbf01f6e006b2a2ae2a56821e756a /library/std/src/lib.rs | |
| parent | 553308b11503eafac6341b82f345bd62b09ba317 (diff) | |
| download | rust-fccba2c341b65b62f513c0b7ee8842f134f3cbcd.tar.gz rust-fccba2c341b65b62f513c0b7ee8842f134f3cbcd.zip | |
Remove `doc_cfg_hide` feature
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index ecd354f599e..ff997ff7603 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -278,6 +278,8 @@ // tidy-alphabetical-start // stabilization was reverted after it hit beta +#![cfg_attr(bootstrap, feature(doc_cfg_hide))] +#![cfg_attr(not(bootstrap), feature(autodiff))] #![feature(alloc_error_handler)] #![feature(allocator_internals)] #![feature(allow_internal_unsafe)] @@ -293,7 +295,6 @@ #![feature(decl_macro)] #![feature(deprecated_suggestion)] #![feature(doc_cfg)] -#![feature(doc_cfg_hide)] #![feature(doc_masked)] #![feature(doc_notable_trait)] #![feature(dropck_eyepatch)] |
