pre-condition: we have the lock, arbitrary thread
| 721 | |
| 722 | // pre-condition: we have the lock, arbitrary thread |
| 723 | bool Probe::isObjectCreationQueued(QObject *obj) const |
| 724 | { |
| 725 | return std::find_if(m_queuedObjectChanges.begin(), m_queuedObjectChanges.end(), |
| 726 | [obj](const ObjectChange &c) { |
| 727 | return c.obj == obj && c.type == Probe::ObjectChange::Create; |
| 728 | }) |
| 729 | != m_queuedObjectChanges.end(); |
| 730 | } |
| 731 | |
| 732 | // pre-condition: we have the lock, arbitrary thread |
| 733 | void Probe::purgeChangesForObject(QObject *obj) |
no test coverage detected