1
Fork 0

manual fixups

This commit is contained in:
Nick Cameron 2015-09-24 10:03:05 +12:00
parent 8f51c8d687
commit 06812c2999
2 changed files with 5 additions and 4 deletions

View file

@ -585,7 +585,9 @@ impl<T: ?Sized> Drop for Arc<T> {
// [1]: (www.boost.org/doc/libs/1_55_0/doc/html/atomic/usage_examples.html)
atomic::fence(Acquire);
unsafe { self.drop_slow() }
unsafe {
self.drop_slow();
}
}
}