| 36 | |
| 37 | |
| 38 | DebuggerController::~DebuggerController() |
| 39 | { |
| 40 | // This is not necessary since m_state should have been deleted by DebuggerController::Destroy() |
| 41 | if (m_state) |
| 42 | { |
| 43 | delete m_state; |
| 44 | m_state = nullptr; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | |
| 49 | void DebuggerController::AddBreakpoint(uint64_t address) |
nothing calls this directly
no outgoing calls
no test coverage detected