MCPcopy Create free account
hub / github.com/Vector35/debugger / IsSameBaseModule

Method IsSameBaseModule

core/debugadapter.cpp:74–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73
74bool 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
82bool DebugModule::IsSameBaseModule(const std::string& name) const

Callers 3

GetModuleBaseMethod · 0.45
GetModuleByNameMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected