Rollup merge of #140025 - Sky9x:re-remove-adtflags-anon, r=compiler-errors

Re-remove `AdtFlags::IS_ANONYMOUS`

Removed in #138296.
I accidentally re-added it in #137043 while resolving merge conflicts. This PR re-removes it.

r? ``@compiler-errors`` (sorry)
This commit is contained in:
Chris Denton 2025-04-19 14:01:40 +00:00 committed by GitHub
commit 9ebc73e2b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 }