| 72 | |
| 73 | |
| 74 | bool DebugModule::IsSameBaseModule(const DebugModule& other) const |
| 75 | { |
| 76 | return ((m_name == other.m_name) || (m_short_name == other.m_short_name) |
| 77 | || (GetPathBaseName(m_name) == GetPathBaseName(other.m_name)) |
| 78 | || (GetPathBaseName(m_short_name) == GetPathBaseName(other.m_short_name))); |
| 79 | } |
| 80 | |
| 81 | |
| 82 | bool DebugModule::IsSameBaseModule(const std::string& name) const |
no outgoing calls
no test coverage detected