Skip to content

Commit 93916ed

Browse files
Mark some more smart pointers as insignificant
1 parent 118d2e4 commit 93916ed

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

alloc/src/boxed.rs

+1
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ mod thin;
228228
#[lang = "owned_box"]
229229
#[fundamental]
230230
#[stable(feature = "rust1", since = "1.0.0")]
231+
#[rustc_insignificant_dtor]
231232
// The declaration of the `Box` struct must be kept in sync with the
232233
// compiler or ICEs will happen.
233234
pub struct Box<

alloc/src/sync.rs

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ macro_rules! acquire {
237237
/// [rc_examples]: crate::rc#examples
238238
#[cfg_attr(not(test), rustc_diagnostic_item = "Arc")]
239239
#[stable(feature = "rust1", since = "1.0.0")]
240+
#[rustc_insignificant_dtor]
240241
pub struct Arc<
241242
T: ?Sized,
242243
#[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global,

0 commit comments

Comments
 (0)