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

Method operator<

api/debuggerapi.h:374–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

372 }
373 bool operator!=(const ModuleNameAndOffset& other) const { return !(*this == other); }
374 bool operator<(const ModuleNameAndOffset& other) const
375 {
376 if (module < other.module)
377 return true;
378 if (module > other.module)
379 return false;
380 return offset < other.offset;
381 }
382 bool operator>(const ModuleNameAndOffset& other) const
383 {
384 if (module > other.module)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected