diff options
| author | Chris Denton <chris@chrisdenton.dev> | 2025-04-19 14:01:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-19 14:01:40 +0000 |
| commit | 9ebc73e2b62cfd2c678b84bfad9e6cf86a315a97 (patch) | |
| tree | 8071bf6a1c05c6114d729698a9b9fc25d60d921e | |
| parent | 995114908d128fbbd8e6186e69d350e274b0c94e (diff) | |
| parent | d863f81671459712627e2bf1a106b0b3e6b1bbce (diff) | |
| download | rust-9ebc73e2b62cfd2c678b84bfad9e6cf86a315a97.tar.gz rust-9ebc73e2b62cfd2c678b84bfad9e6cf86a315a97.zip | |
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)
| -rw-r--r-- | compiler/rustc_middle/src/ty/adt.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/ty/adt.rs b/compiler/rustc_middle/src/ty/adt.rs index 66517c97a68..d92b4f9c06b 100644 --- a/compiler/rustc_middle/src/ty/adt.rs +++ b/compiler/rustc_middle/src/ty/adt.rs @@ -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 } |
