diff options
| author | Oleksiy Vyalov <ovyalov@google.com> | 2015-06-25 17:41:41 +0000 |
|---|---|---|
| committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-06-25 17:41:41 +0000 |
| commit | 05f75e9ffba43660d719e161808c75eb3960fadf (patch) | |
| tree | 84cd6c51de42518dcfc3600e669993121e93859b /lldb/scripts/interface | |
| parent | 5fbe3ccb4991f8ad5e376fcb80e51c27c3451b42 (diff) | |
| download | bcm5719-llvm-05f75e9ffba43660d719e161808c75eb3960fadf.tar.gz bcm5719-llvm-05f75e9ffba43660d719e161808c75eb3960fadf.zip | |
Add const versions of SBFrame::GetFunctionName and SBFrame::IsInlined.
http://reviews.llvm.org/D10711
llvm-svn: 240660
Diffstat (limited to 'lldb/scripts/interface')
| -rw-r--r-- | lldb/scripts/interface/SBFrame.i | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lldb/scripts/interface/SBFrame.i b/lldb/scripts/interface/SBFrame.i index 2211dd103f9..d87bc532b58 100644 --- a/lldb/scripts/interface/SBFrame.i +++ b/lldb/scripts/interface/SBFrame.i @@ -128,6 +128,9 @@ public: const char * GetFunctionName(); + const char * + GetFunctionName() const; + %feature("docstring", " /// Return true if this frame represents an inlined function. /// @@ -135,7 +138,10 @@ public: ") IsInlined; bool IsInlined(); - + + bool + IsInlined() const; + %feature("docstring", " /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. |

