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