forked from OSchip/llvm-project
Add missing return to SBAddress::GetOffset(). This was caught by Carlo Kok.
llvm-svn: 167019
This commit is contained in:
parent
e2395dc27b
commit
bbffdd71eb
|
@ -185,7 +185,7 @@ lldb::addr_t
|
|||
SBAddress::GetOffset ()
|
||||
{
|
||||
if (m_opaque_ap.get())
|
||||
m_opaque_ap->GetOffset();
|
||||
return m_opaque_ap->GetOffset();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue