From a5d9c1d32fe0573b31cbbe5cc6d892fcebb92e9c Mon Sep 17 00:00:00 2001 From: Oleksiy Vyalov Date: Tue, 23 Jun 2015 18:21:55 +0000 Subject: Mark SBFrame::GetFunctionName and SBFrame::IsInlined as const. llvm-svn: 240435 --- lldb/scripts/interface/SBFrame.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/scripts/interface') 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 -- cgit v1.2.3