diff options
| author | Zack Weinberg <zackw@panix.com> | 2017-04-20 17:37:12 -0400 |
|---|---|---|
| committer | Zack Weinberg <zackw@panix.com> | 2017-05-10 09:52:16 -0400 |
| commit | 4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab (patch) | |
| tree | 486f01a1d12b1a0efdb98fa7f1ccd72a5336fb47 /src/libstd/macros.rs | |
| parent | 07766f675caaabc1d64ef59db6ddfa43e72e6d4f (diff) | |
| download | rust-4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab.tar.gz rust-4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab.zip | |
Fix up stability annotations per feedback.
Diffstat (limited to 'src/libstd/macros.rs')
| -rw-r--r-- | src/libstd/macros.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 98c635d127f..ef78ea6dfe8 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -143,7 +143,7 @@ macro_rules! println { /// /// Panics if writing to `io::stderr` fails. #[macro_export] -#[unstable(feature = "eprint", issue="40528")] +#[stable(feature = "eprint", since="1.18.0")] #[allow_internal_unstable] macro_rules! eprint { ($($arg:tt)*) => ($crate::io::_eprint(format_args!($($arg)*))); @@ -162,7 +162,7 @@ macro_rules! eprint { /// /// Panics if writing to `io::stderr` fails. #[macro_export] -#[unstable(feature = "eprint", issue="40528")] +#[stable(feature = "eprint", since="1.18.0")] macro_rules! eprintln { () => (eprint!("\n")); ($fmt:expr) => (eprint!(concat!($fmt, "\n"))); |
