| 29 | constexpr int SortFilterRole = Qt::UserRole + 1; |
| 30 | |
| 31 | ModuleItem::ModuleItem(uint64_t address, size_t size, std::string name, std::string path) : |
| 32 | m_address(address), m_size(size), m_name(name), m_path(path) |
| 33 | {} |
| 34 | |
| 35 | |
| 36 | bool ModuleItem::operator==(const ModuleItem& other) const |
nothing calls this directly
no outgoing calls
no test coverage detected