| 371 | return (module == other.module) && (offset == other.offset); |
| 372 | } |
| 373 | bool operator!=(const ModuleNameAndOffset& other) const { return !(*this == other); } |
| 374 | bool operator<(const ModuleNameAndOffset& other) const |
| 375 | { |
| 376 | if (module < other.module) |
nothing calls this directly
no outgoing calls
no test coverage detected