MCPcopy Create free account
hub / github.com/Vector35/debugger / operator==

Method operator==

core/debugadapter.h:105–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 DebugThread(std::uint32_t tid, std::uintptr_t rip) : m_tid(tid), m_rip(rip) {}
104
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 };

Callers 1

GetControllerMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected