Remove outdated comment.

This commit is contained in:
Camille GILLOT 2023-05-17 10:26:04 +00:00
parent 6f271dc49c
commit ae318e3444

View File

@ -315,8 +315,6 @@ pub struct DominatorTree<N: Idx> {
// Even though we track only the immediate dominator of each node, it's // Even though we track only the immediate dominator of each node, it's
// possible to get its full list of dominators by looking up the dominator // possible to get its full list of dominators by looking up the dominator
// of each dominator. (See the `impl Iterator for Iter` definition). // of each dominator. (See the `impl Iterator for Iter` definition).
//
// Note: immediate_dominators[root] is Some(root)!
immediate_dominators: IndexVec<N, Option<N>>, immediate_dominators: IndexVec<N, Option<N>>,
} }