| 149 | bool m_loaded {}; |
| 150 | |
| 151 | DebugModule() : m_name(""), m_short_name(""), m_address(0), m_size(0) {} |
| 152 | |
| 153 | DebugModule(std::string name, std::string short_name, std::uintptr_t address, std::size_t size, bool loaded) : |
| 154 | m_name(std::move(name)), m_short_name(std::move(short_name)), m_address(address), m_size(size), |
nothing calls this directly
no outgoing calls
no test coverage detected