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

Method operator<

core/debuggercommon.h:38–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36 return IsSameBaseModule(other) && (offset == other.offset);
37 }
38 bool operator<(const ModuleNameAndOffset& other) const
39 {
40 if (module < other.module)
41 return true;
42 if (module > other.module)
43 return false;
44 return offset < other.offset;
45 }
46 bool operator>(const ModuleNameAndOffset& other) const
47 {
48 if (module > other.module)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected