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

Method operator>

core/debuggercommon.h:46–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 return offset < other.offset;
45 }
46 bool operator>(const ModuleNameAndOffset& other) const
47 {
48 if (module > other.module)
49 return true;
50 if (module < other.module)
51 return false;
52 return offset > other.offset;
53 }
54
55
56 static std::string GetPathBaseName(const std::string& path)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected