diff options
| author | Ralf Jung <post@ralfj.de> | 2022-12-24 10:12:14 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-12-24 10:12:14 +0100 |
| commit | 9c01e9f7f56694db0179673fca221358d3524903 (patch) | |
| tree | 7a64babe493c9e88f72cfd2eead7fccadd304e0a /compiler/rustc_data_structures/src/graph | |
| parent | 0c14ad4d9fe83e737d7b8db0c2520ef54c99926e (diff) | |
| parent | 4f4d0586ad20c66a16d547581ca379beafece93a (diff) | |
| download | rust-9c01e9f7f56694db0179673fca221358d3524903.tar.gz rust-9c01e9f7f56694db0179673fca221358d3524903.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_data_structures/src/graph')
| -rw-r--r-- | compiler/rustc_data_structures/src/graph/dominators/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/graph/dominators/mod.rs b/compiler/rustc_data_structures/src/graph/dominators/mod.rs index 00913a483db..94a8c1fc051 100644 --- a/compiler/rustc_data_structures/src/graph/dominators/mod.rs +++ b/compiler/rustc_data_structures/src/graph/dominators/mod.rs @@ -22,7 +22,7 @@ struct PreOrderFrame<Iter> { } rustc_index::newtype_index! { - struct PreorderIndex { .. } + struct PreorderIndex {} } pub fn dominators<G: ControlFlowGraph>(graph: G) -> Dominators<G::Node> { |
