| 30 | uint64_t offset; |
| 31 | |
| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected