| 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 | }; |
| 309 | |
| 310 |
nothing calls this directly
no outgoing calls
no test coverage detected