diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-03-16 00:43:37 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-03-18 15:08:25 +0100 |
| commit | 5ee4f6f660f9e7516e0a188068c173b0d83347e8 (patch) | |
| tree | d45971dd584b15d7b9a06c961855c65bf05e0e44 /src/libpanic_unwind | |
| parent | 41a0b3ec53237ae844a741cffe727ee302b53a67 (diff) | |
| download | rust-5ee4f6f660f9e7516e0a188068c173b0d83347e8.tar.gz rust-5ee4f6f660f9e7516e0a188068c173b0d83347e8.zip | |
fix pre-expansion linting infra
Diffstat (limited to 'src/libpanic_unwind')
| -rw-r--r-- | src/libpanic_unwind/emcc.rs | 2 | ||||
| -rw-r--r-- | src/libpanic_unwind/gcc.rs | 2 | ||||
| -rw-r--r-- | src/libpanic_unwind/seh.rs | 1 |
3 files changed, 0 insertions, 5 deletions
diff --git a/src/libpanic_unwind/emcc.rs b/src/libpanic_unwind/emcc.rs index c7144fe16cd..a0bdb1481c6 100644 --- a/src/libpanic_unwind/emcc.rs +++ b/src/libpanic_unwind/emcc.rs @@ -6,8 +6,6 @@ //! Emscripten's runtime always implements those APIs and does not //! implement libunwind. -#![allow(private_no_mangle_fns)] - use alloc::boxed::Box; use core::any::Any; use core::mem; diff --git a/src/libpanic_unwind/gcc.rs b/src/libpanic_unwind/gcc.rs index 9c032b30341..1622442a5eb 100644 --- a/src/libpanic_unwind/gcc.rs +++ b/src/libpanic_unwind/gcc.rs @@ -36,8 +36,6 @@ //! Once stack has been unwound down to the handler frame level, unwinding stops //! and the last personality routine transfers control to the catch block. -#![allow(private_no_mangle_fns)] - use alloc::boxed::Box; use core::any::Any; diff --git a/src/libpanic_unwind/seh.rs b/src/libpanic_unwind/seh.rs index c294fe26327..10b765a5b41 100644 --- a/src/libpanic_unwind/seh.rs +++ b/src/libpanic_unwind/seh.rs @@ -45,7 +45,6 @@ //! [llvm]: http://llvm.org/docs/ExceptionHandling.html#background-on-windows-exceptions #![allow(nonstandard_style)] -#![allow(private_no_mangle_fns)] use alloc::boxed::Box; use core::any::Any; |
