1
Fork 0

Feature-gate the #[unsafe_no_drop_flag] attribute.

See RFC 320, "Non-zeroing dynamic drops."

Fix #22173

[breaking-change]
This commit is contained in:
Felix S. Klock II 2015-02-11 13:57:40 +01:00
parent 0047f8bbd8
commit f9a1087f27
8 changed files with 24 additions and 2 deletions

View file

@ -111,7 +111,7 @@
#![feature(core)]
#![feature(hash)]
#![feature(int_uint)]
#![feature(lang_items, unsafe_destructor)]
#![feature(lang_items)]
#![feature(libc)]
#![feature(linkage, thread_local, asm)]
#![feature(old_impl_check)]
@ -120,6 +120,8 @@
#![feature(staged_api)]
#![feature(unboxed_closures)]
#![feature(unicode)]
#![feature(unsafe_destructor)]
#![feature(unsafe_no_drop_flag)]
#![feature(macro_reexport)]
#![cfg_attr(test, feature(test))]