| 115 | bool m_is_active {}; |
| 116 | |
| 117 | DebugBreakpoint(std::uintptr_t address, unsigned long id, bool active) : |
| 118 | m_address(address), m_id(id), m_is_active(active) |
| 119 | {} |
| 120 | |
| 121 | DebugBreakpoint(std::uintptr_t address) : m_address(address) {} |
| 122 |
nothing calls this directly
no outgoing calls
no test coverage detected