Skip to content

Commit 9ebc73e

Browse files
authored
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)
2 parents 9951149 + d863f81 commit 9ebc73e

File tree

1 file changed

+0
-2
lines changed
  • compiler/rustc_middle/src/ty

1 file changed

+0
-2
lines changed

compiler/rustc_middle/src/ty/adt.rs

-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ bitflags::bitflags! {
5555
const IS_UNSAFE_CELL = 1 << 9;
5656
/// Indicates whether the type is `UnsafePinned`.
5757
const IS_UNSAFE_PINNED = 1 << 10;
58-
/// Indicates whether the type is anonymous.
59-
const IS_ANONYMOUS = 1 << 11;
6058
}
6159
}
6260
rustc_data_structures::external_bitflags_debug! { AdtFlags }

0 commit comments

Comments
 (0)