| 36 | return IsSameBaseModule(other) && (offset == other.offset); |
| 37 | } |
| 38 | bool operator<(const ModuleNameAndOffset& other) const |
| 39 | { |
| 40 | if (module < other.module) |
| 41 | return true; |
| 42 | if (module > other.module) |
| 43 | return false; |
| 44 | return offset < other.offset; |
| 45 | } |
| 46 | bool operator>(const ModuleNameAndOffset& other) const |
| 47 | { |
| 48 | if (module > other.module) |
nothing calls this directly
no outgoing calls
no test coverage detected