diff options
| author | Paolo Teti <paolo.teti@gmail.com> | 2018-09-13 10:10:52 +0200 |
|---|---|---|
| committer | Paolo Teti <paolo.teti@gmail.com> | 2018-09-13 10:25:59 +0200 |
| commit | c03769a47e91aadf34d616d68f8a3ddfcf983d93 (patch) | |
| tree | 6991836c1e63b3bb5a294db300994e602513b1b1 /library/compiler-builtins/crates/panic-handler/src/lib.rs | |
| parent | dcc0626f98386287efd081ea8f3dde44f07e8c11 (diff) | |
| download | rust-c03769a47e91aadf34d616d68f8a3ddfcf983d93.tar.gz rust-c03769a47e91aadf34d616d68f8a3ddfcf983d93.zip | |
`panic_handler` is now stable
Fixes the following warning: "warning: the feature `panic_handler` has been stable since 1.30.0 and no longer requires an attribute to enable"
Diffstat (limited to 'library/compiler-builtins/crates/panic-handler/src/lib.rs')
| -rw-r--r-- | library/compiler-builtins/crates/panic-handler/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/compiler-builtins/crates/panic-handler/src/lib.rs b/library/compiler-builtins/crates/panic-handler/src/lib.rs index e9706108737..a75999a4b60 100644 --- a/library/compiler-builtins/crates/panic-handler/src/lib.rs +++ b/library/compiler-builtins/crates/panic-handler/src/lib.rs @@ -1,6 +1,6 @@ // Hack of a crate until rust-lang/rust#51647 is fixed -#![feature(no_core, panic_handler)] +#![feature(no_core)] #![no_core] extern crate core; |
