Rename #[no_drop_flag] to #[unsafe_no_drop_flag]

This commit is contained in:
Birunthan Mohanathas 2013-06-27 20:47:45 +03:00 committed by Daniel Micay
parent 779ee2a2dd
commit dcf1dc060a
4 changed files with 5 additions and 5 deletions

View file

@ -62,7 +62,7 @@ pub struct AtomicPtr<T> {
/**
* An owned atomic pointer. Ensures that only a single reference to the data is held at any time.
*/
#[no_drop_flag]
#[unsafe_no_drop_flag]
pub struct AtomicOption<T> {
priv p: *mut c_void
}