| 27 | using namespace std; |
| 28 | |
| 29 | BreakpointItem::BreakpointItem(bool enabled, const ModuleNameAndOffset location, uint64_t address) : |
| 30 | m_enabled(enabled), m_location(location), m_address(address) |
| 31 | {} |
| 32 | |
| 33 | |
| 34 | bool BreakpointItem::operator==(const BreakpointItem& other) const |
nothing calls this directly
no outgoing calls
no test coverage detected