| 142 | Terminate terminate; |
| 143 | |
| 144 | void update(Result rhs) { |
| 145 | if (terminate == Terminate::None) |
| 146 | terminate = rhs.terminate; |
| 147 | action |= rhs.action; |
| 148 | } |
| 149 | }; |
| 150 | |
| 151 | enum class Direction : std::uint8_t { Forward, Reverse }; |
no outgoing calls
no test coverage detected