diff options
| author | David Tolnay <dtolnay@gmail.com> | 2021-04-14 18:44:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-14 18:44:22 -0700 |
| commit | 28efb22745640f5a3218195da6cfbaff1696ff2e (patch) | |
| tree | fd91274ccefdaba9029117088c029ab196105af0 | |
| parent | b80a96c286628453dec50b9609570949d5d387a9 (diff) | |
| download | rust-28efb22745640f5a3218195da6cfbaff1696ff2e.tar.gz rust-28efb22745640f5a3218195da6cfbaff1696ff2e.zip | |
s/deprecated_in_future/deprecated/
| -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 39280f569c4..f7345bef561 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -456,7 +456,7 @@ pub use core::pin; #[stable(feature = "rust1", since = "1.0.0")] pub use core::ptr; #[stable(feature = "rust1", since = "1.0.0")] -#[allow(deprecated_in_future)] +#[allow(deprecated)] pub use core::raw; #[stable(feature = "rust1", since = "1.0.0")] pub use core::result; |
