diff options
| author | Fenrir <[email protected]> | 2017-12-01 21:57:34 -0700 |
|---|---|---|
| committer | FenrirWolf <[email protected]> | 2017-12-01 22:33:03 -0700 |
| commit | 8ba058552b61484248fc295dfbbe2e18a9d49e48 (patch) | |
| tree | 0c1bdd596147abee8dda56ac98ca009fa699a707 /ctr-std/src/panic.rs | |
| parent | Update bindings for libctru v1.4.0 (diff) | |
| download | ctru-rs-8ba058552b61484248fc295dfbbe2e18a9d49e48.tar.xz ctru-rs-8ba058552b61484248fc295dfbbe2e18a9d49e48.zip | |
Patch `std` to be compatible with Rust nightly-2017-12-01
This only fixes things enough so that the project compiles again. More standard library changes from upstream Rust will be pulled in later.
Diffstat (limited to 'ctr-std/src/panic.rs')
| -rw-r--r-- | ctr-std/src/panic.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ctr-std/src/panic.rs b/ctr-std/src/panic.rs index 58356bc..e73e0a6 100644 --- a/ctr-std/src/panic.rs +++ b/ctr-std/src/panic.rs @@ -11,6 +11,7 @@ //! Panic support in the standard library #![stable(feature = "std_panic", since = "1.9.0")] +#![allow(auto_impl)] use any::Any; use cell::UnsafeCell; |