| 287 | } |
| 288 | |
| 289 | void Watches::removeFinishResult() |
| 290 | { |
| 291 | // resultVariable is a raw pointer cache that prevents repeated weak pointer access |
| 292 | if (auto* const resultVariable = m_finishResult.get()) { |
| 293 | m_finishResult.clear(); |
| 294 | resultVariable->die(); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | void Watches::resetChanged() |
| 299 | { |
no test coverage detected