commit | ca4fe802f0f8439a070e2adfb38ae2487fbde135 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Wed Feb 01 19:05:20 2012 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Wed Feb 01 19:05:20 2012 +0000 |
tree | 86b5d776aa51b0fec7315812d53ac8740ed3f5f3 | |
parent | cfbfcd2121002ada92ac24dece48a28559651949 [diff] [blame] |
Add const-ness to BreakpointLocation::IsEnabled(). git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@149523 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/BreakpointLocation.cpp b/source/Breakpoint/BreakpointLocation.cpp index fb123de..358d378 100644 --- a/source/Breakpoint/BreakpointLocation.cpp +++ b/source/Breakpoint/BreakpointLocation.cpp
@@ -70,7 +70,7 @@ } bool -BreakpointLocation::IsEnabled () +BreakpointLocation::IsEnabled () const { if (!m_owner.IsEnabled()) return false;