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

Method operator>

api/debuggerapi.h:382–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380 return offset < other.offset;
381 }
382 bool operator>(const ModuleNameAndOffset& other) const
383 {
384 if (module > other.module)
385 return true;
386 if (module < other.module)
387 return false;
388 return offset > other.offset;
389 }
390 };
391
392 typedef BNDebuggerEventType DebuggerEventType;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected