| 1208 | |
| 1209 | |
| 1210 | bool DebuggerController::RemoveEventCallbackInternal(size_t index) |
| 1211 | { |
| 1212 | for (auto it = m_eventCallbacks.begin(); it != m_eventCallbacks.end(); it++) |
| 1213 | { |
| 1214 | if (it->index == index) |
| 1215 | { |
| 1216 | m_eventCallbacks.erase(it); |
| 1217 | return true; |
| 1218 | } |
| 1219 | } |
| 1220 | return false; |
| 1221 | } |
| 1222 | |
| 1223 | |
| 1224 | void DebuggerController::PostDebuggerEvent(const DebuggerEvent& event) |
nothing calls this directly
no outgoing calls
no test coverage detected