| 380 | return offset < other.offset; |
| 381 | } |
| 382 | bool operator>(const ModuleNameAndOffset& other) const |
| 383 | { |
| 384 | if (module > other.module) |
| 385 | return true; |
| 386 | if (module < other.module) |
| 387 | return false; |
| 388 | return offset > other.offset; |
| 389 | } |
| 390 | }; |
| 391 | |
| 392 | typedef BNDebuggerEventType DebuggerEventType; |
nothing calls this directly
no outgoing calls
no test coverage detected