Mark this Locator as removed (not allowed in level 0). */
| 588 | void SetMissing() noexcept { cluster = nullptr; index = 0; } |
| 589 | /** Mark this Locator as removed (not allowed in level 0). */ |
| 590 | void SetRemoved() noexcept { cluster = nullptr; index = DepGraphIndex(-1); } |
| 591 | /** Mark this Locator as present, in the specified Cluster. */ |
| 592 | void SetPresent(Cluster* c, DepGraphIndex i) noexcept { cluster = c; index = i; } |
| 593 | /** Check if this Locator is missing. */ |