Re-remove AdtFlags::IS_ANONYMOUS

This commit is contained in:
Sky 2025-04-18 21:40:53 -04:00
parent 191df20fca
commit d863f81671
No known key found for this signature in database
GPG key ID: 2755A6B7099BC040

View file

@ -55,8 +55,6 @@ bitflags::bitflags! {
const IS_UNSAFE_CELL = 1 << 9;
/// Indicates whether the type is `UnsafePinned`.
const IS_UNSAFE_PINNED = 1 << 10;
/// Indicates whether the type is anonymous.
const IS_ANONYMOUS = 1 << 11;
}
}
rustc_data_structures::external_bitflags_debug! { AdtFlags }