| 105 | bool operator==(const DebugThread& rhs) const { return (m_tid == rhs.m_tid) && (m_rip == rhs.m_rip); } |
| 106 | |
| 107 | bool operator!=(const DebugThread& rhs) const { return !(*this == rhs); } |
| 108 | }; |
| 109 | |
| 110 |
nothing calls this directly
no outgoing calls
no test coverage detected