| 180 | //------------------------------------------------------------------------- |
| 181 | template <typename Condition> |
| 182 | void ExecutedAddressManager::RemoveAddressLineIf(Condition condition) |
| 183 | { |
| 184 | auto it = addressLineMap_.begin(); |
| 185 | |
| 186 | while (it != addressLineMap_.end()) |
| 187 | { |
| 188 | if (condition(*it)) |
| 189 | it = addressLineMap_.erase(it); |
| 190 | else |
| 191 | ++it; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | //------------------------------------------------------------------------- |
| 196 | void ExecutedAddressManager::OnExitProcess(HANDLE hProcess) |
nothing calls this directly
no outgoing calls
no test coverage detected