summaryrefslogtreecommitdiffstats
path: root/lldb/scripts/interface/SBFrame.i
diff options
context:
space:
mode:
authorOleksiy Vyalov <ovyalov@google.com>2015-06-23 18:21:55 +0000
committerOleksiy Vyalov <ovyalov@google.com>2015-06-23 18:21:55 +0000
commita5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c (patch)
treecca51417be1e0e59c90f76e50441deda1a23b02c /lldb/scripts/interface/SBFrame.i
parentd4a667a4c0a8871a786438da15bf72e6b0e1395d (diff)
downloadbcm5719-llvm-a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c.tar.gz
bcm5719-llvm-a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c.zip
Mark SBFrame::GetFunctionName and SBFrame::IsInlined as const.
llvm-svn: 240435
Diffstat (limited to 'lldb/scripts/interface/SBFrame.i')
-rw-r--r--lldb/scripts/interface/SBFrame.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/interface/SBFrame.i b/lldb/scripts/interface/SBFrame.i
index 2211dd103f9..4bc0da6d800 100644
--- a/lldb/scripts/interface/SBFrame.i
+++ b/lldb/scripts/interface/SBFrame.i
@@ -126,7 +126,7 @@ public:
/// See also IsInlined().
") GetFunctionName;
const char *
- GetFunctionName();
+ GetFunctionName() const;
%feature("docstring", "
/// Return true if this frame represents an inlined function.
@@ -134,7 +134,7 @@ public:
/// See also GetFunctionName().
") IsInlined;
bool
- IsInlined();
+ IsInlined() const;
%feature("docstring", "
/// The version that doesn't supply a 'use_dynamic' value will use the
OpenPOWER on IntegriCloud