diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-09-09 23:04:00 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-09-09 23:04:00 +0000 |
| commit | bf2331c4917bb35b9a50f6ddcf7993d6312cccff (patch) | |
| tree | d71cc5f39c112aae3fca6bfb7e506bd9229446ac /lldb/source/API/SBFrame.cpp | |
| parent | b3722e222377cf3384bb2bafda90cfeb4e151df5 (diff) | |
| download | bcm5719-llvm-bf2331c4917bb35b9a50f6ddcf7993d6312cccff.tar.gz bcm5719-llvm-bf2331c4917bb35b9a50f6ddcf7993d6312cccff.zip | |
Added the ability to introspect types thourgh the public SBType interface.
Fixed up many API calls to not be "const" as const doesn't mean anything to
most of our lldb::SB objects since they contain a shared pointer, auto_ptr, or
pointer to the types which circumvent the constness anyway.
llvm-svn: 139428
Diffstat (limited to 'lldb/source/API/SBFrame.cpp')
| -rw-r--r-- | lldb/source/API/SBFrame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBFrame.cpp b/lldb/source/API/SBFrame.cpp index 4174638b8e7..3f27b6fc123 100644 --- a/lldb/source/API/SBFrame.cpp +++ b/lldb/source/API/SBFrame.cpp @@ -538,8 +538,8 @@ SBFrame::get() const return m_opaque_sp.get(); } -const lldb::StackFrameSP & -SBFrame::get_sp() const +lldb::StackFrameSP & +SBFrame::get_sp() { return m_opaque_sp; } |

