Auto merge of #105880 - Nilstrieb:make-newtypes-less-not-rust, r=oli-obk
Improve syntax of `newtype_index` This makes it more like proper Rust and also makes the implementation a lot simpler. Mostly just turns weird flags in the body into proper attributes. It should probably also be converted to an attribute macro instead of function-like, but that can be done in a future PR.
This commit is contained in:
commit
eb9e5e711d
37 changed files with 182 additions and 268 deletions
|
@ -357,15 +357,13 @@ impl<'tcx> SccUniverse<'tcx> {
|
|||
}
|
||||
|
||||
rustc_index::newtype_index! {
|
||||
struct LeakCheckNode {
|
||||
DEBUG_FORMAT = "LeakCheckNode({})"
|
||||
}
|
||||
#[debug_format = "LeakCheckNode({})"]
|
||||
struct LeakCheckNode {}
|
||||
}
|
||||
|
||||
rustc_index::newtype_index! {
|
||||
struct LeakCheckScc {
|
||||
DEBUG_FORMAT = "LeakCheckScc({})"
|
||||
}
|
||||
#[debug_format = "LeakCheckScc({})"]
|
||||
struct LeakCheckScc {}
|
||||
}
|
||||
|
||||
/// Represents the graph of constraints. For each `R1: R2` constraint we create
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue