Remove a set of transactions from the set of to-be-linearized ones. */
| 83 | |
| 84 | /** Remove a set of transactions from the set of to-be-linearized ones. */ |
| 85 | void MarkDone(SetType select) noexcept { m_todo -= select; } |
| 86 | |
| 87 | /** Determine whether unlinearized transactions remain. */ |
| 88 | bool AllDone() const noexcept { return m_todo.None(); } |
no outgoing calls
no test coverage detected