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

Method operator==

core/debuggercommon.h:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 ModuleNameAndOffset() : module(""), offset(0) {}
33 ModuleNameAndOffset(std::string mod, uint64_t off) : module(mod), offset(off) {}
34 bool operator==(const ModuleNameAndOffset& other) const
35 {
36 return IsSameBaseModule(other) && (offset == other.offset);
37 }
38 bool operator<(const ModuleNameAndOffset& other) const
39 {
40 if (module < other.module)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected