| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected