diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-07-30 07:20:17 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-07-30 07:24:19 +1000 |
| commit | bd24763aaf32fe92e79491aba05346b570301647 (patch) | |
| tree | 356b83a248bfff35f7125b6885fef5e49b9f2cb5 /library/std/src/lib.rs | |
| parent | 66e5852c3bd022e2a589a089a0bc8392f8b291e1 (diff) | |
| download | rust-bd24763aaf32fe92e79491aba05346b570301647.tar.gz rust-bd24763aaf32fe92e79491aba05346b570301647.zip | |
Move a comment.
In #125443 this comment ended up in the wrong spot. I'm not sure why; after careful checking this was the only case I could find like this.
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index ee6f5a6f3c0..5a33a243743 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -671,7 +671,6 @@ mod panicking; #[allow(dead_code, unused_attributes, fuzzy_provenance_casts, unsafe_op_in_unsafe_fn)] mod backtrace_rs; -// Re-export macros defined in core. #[unstable(feature = "cfg_match", issue = "115585")] pub use core::cfg_match; #[unstable( @@ -690,6 +689,7 @@ pub use core::{ env, file, format_args, format_args_nl, include, include_bytes, include_str, line, log_syntax, module_path, option_env, stringify, trace_macros, }; +// Re-export macros defined in core. #[stable(feature = "rust1", since = "1.0.0")] #[allow(deprecated, deprecated_in_future)] pub use core::{ |
