Mark SBFrame::GetFunctionName and SBFrame::IsInlined as const.

llvm-svn: 240435
This commit is contained in:
Oleksiy Vyalov
2015-06-23 18:21:55 +00:00
parent d4a667a4c0
commit a5d9c1d32f
3 changed files with 7 additions and 7 deletions

View File

@@ -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;