forked from OSchip/llvm-project
Revert rL240435: "Mark SBFrame::GetFunctionName and SBFrame::IsInlined as const.".
llvm-svn: 240565
This commit is contained in:
parent
19e86199f1
commit
6345fe3eb3
|
@ -89,18 +89,18 @@ public:
|
|||
///
|
||||
/// See also IsInlined().
|
||||
const char *
|
||||
GetFunctionName() const;
|
||||
GetFunctionName();
|
||||
|
||||
/// Return true if this frame represents an inlined function.
|
||||
///
|
||||
/// See also GetFunctionName().
|
||||
bool
|
||||
IsInlined() const;
|
||||
IsInlined();
|
||||
|
||||
/// The version that doesn't supply a 'use_dynamic' value will use the
|
||||
/// target's default.
|
||||
lldb::SBValue
|
||||
EvaluateExpression (const char *expr);
|
||||
EvaluateExpression (const char *expr);
|
||||
|
||||
lldb::SBValue
|
||||
EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic);
|
||||
|
|
|
@ -126,7 +126,7 @@ public:
|
|||
/// See also IsInlined().
|
||||
") GetFunctionName;
|
||||
const char *
|
||||
GetFunctionName() const;
|
||||
GetFunctionName();
|
||||
|
||||
%feature("docstring", "
|
||||
/// Return true if this frame represents an inlined function.
|
||||
|
@ -134,7 +134,7 @@ public:
|
|||
/// See also GetFunctionName().
|
||||
") IsInlined;
|
||||
bool
|
||||
IsInlined() const;
|
||||
IsInlined();
|
||||
|
||||
%feature("docstring", "
|
||||
/// The version that doesn't supply a 'use_dynamic' value will use the
|
||||
|
|
|
@ -1499,7 +1499,7 @@ SBFrame::EvaluateExpression (const char *expr, const SBExpressionOptions &option
|
|||
}
|
||||
|
||||
bool
|
||||
SBFrame::IsInlined() const
|
||||
SBFrame::IsInlined()
|
||||
{
|
||||
Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
||||
ExecutionContext exe_ctx(m_opaque_sp.get());
|
||||
|
@ -1536,7 +1536,7 @@ SBFrame::IsInlined() const
|
|||
}
|
||||
|
||||
const char *
|
||||
SBFrame::GetFunctionName() const
|
||||
SBFrame::GetFunctionName()
|
||||
{
|
||||
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
||||
const char *name = NULL;
|
||||
|
|
Loading…
Reference in New Issue