| 125 | bool operator==(const DebugBreakpoint& rhs) const { return this->m_address == rhs.m_address; } |
| 126 | |
| 127 | bool operator!() const { return !this->m_address && !this->m_id && !this->m_is_active; } |
| 128 | }; |
| 129 | |
| 130 | struct DebugRegister |
nothing calls this directly
no outgoing calls
no test coverage detected