diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-06-23 18:21:55 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-06-23 18:21:55 +0000 |
commit | a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c (patch) | |
tree | cca51417be1e0e59c90f76e50441deda1a23b02c /lldb/source/API/SBFrame.cpp | |
parent | d4a667a4c0a8871a786438da15bf72e6b0e1395d (diff) | |
download | bcm5719-llvm-a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c.tar.gz bcm5719-llvm-a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c.zip |
Mark SBFrame::GetFunctionName and SBFrame::IsInlined as const.
llvm-svn: 240435
Diffstat (limited to 'lldb/source/API/SBFrame.cpp')
-rw-r--r-- | lldb/source/API/SBFrame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBFrame.cpp b/lldb/source/API/SBFrame.cpp index 224b6663a42..0081b09fd1e 100644 --- a/lldb/source/API/SBFrame.cpp +++ b/lldb/source/API/SBFrame.cpp @@ -1499,7 +1499,7 @@ SBFrame::EvaluateExpression (const char *expr, const SBExpressionOptions &option } bool -SBFrame::IsInlined() +SBFrame::IsInlined() const { Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); ExecutionContext exe_ctx(m_opaque_sp.get()); @@ -1536,7 +1536,7 @@ SBFrame::IsInlined() } const char * -SBFrame::GetFunctionName() +SBFrame::GetFunctionName() const { Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); const char *name = NULL; |