diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-01-09 17:04:25 +0100 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-01-25 13:48:10 +0100 |
| commit | dec5cfbabab4a81f10a5bad6151302df17e92431 (patch) | |
| tree | 3618f0fdaac9f82ab7668cee9206ab004e89b2e5 | |
| parent | 9a9477fada5baf69d693e717d6df902e411a73d6 (diff) | |
| download | rust-dec5cfbabab4a81f10a5bad6151302df17e92431.tar.gz rust-dec5cfbabab4a81f10a5bad6151302df17e92431.zip | |
Remove unused allow_internal_unstable on core::panic.
| -rw-r--r-- | library/core/src/macros/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs index 90964bae98c..8f795d9050e 100644 --- a/library/core/src/macros/mod.rs +++ b/library/core/src/macros/mod.rs @@ -1,6 +1,6 @@ #[doc(include = "panic.md")] #[macro_export] -#[allow_internal_unstable(core_panic, const_caller_location)] +#[allow_internal_unstable(core_panic)] #[stable(feature = "core", since = "1.6.0")] #[rustc_diagnostic_item = "core_panic_macro"] macro_rules! panic { |
