| 303 | DebugThread(std::uint32_t tid, std::uintptr_t rip) : m_tid(tid), m_rip(rip) {} |
| 304 | |
| 305 | bool operator==(const DebugThread& rhs) const { return (m_tid == rhs.m_tid) && (m_rip == rhs.m_rip); } |
| 306 | |
| 307 | bool operator!=(const DebugThread& rhs) const { return !(*this == rhs); } |
| 308 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected