patch from: Jean-Daniel Dupas

BreakpointLocation::GetLoadAddress() does not match the 'StoppointLocation::GetLoadAddress() const' virtual function prototype, and so, does not override the superclass function.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@105927 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/BreakpointLocation.cpp b/source/Breakpoint/BreakpointLocation.cpp
index 5c0e81d..0f82829 100644
--- a/source/Breakpoint/BreakpointLocation.cpp
+++ b/source/Breakpoint/BreakpointLocation.cpp
@@ -48,7 +48,7 @@
 }
 
 lldb::addr_t
-BreakpointLocation::GetLoadAddress ()
+BreakpointLocation::GetLoadAddress () const
 {
     return m_address.GetLoadAddress(m_owner.GetTarget().GetProcessSP().get());
 }