diff options
author | Greg Clayton <gclayton@apple.com> | 2011-10-01 02:59:24 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-10-01 02:59:24 +0000 |
commit | 9a37766e7cde57455c8a5c3bc5aea5bc7cfaaf8f (patch) | |
tree | d38a52d58efeda99ebbc51c091a14db845071f82 /lldb/source/API/SBDebugger.cpp | |
parent | ce29158bc45b9b9a347b69c848b19f5b77b6052b (diff) | |
download | bcm5719-llvm-9a37766e7cde57455c8a5c3bc5aea5bc7cfaaf8f.tar.gz bcm5719-llvm-9a37766e7cde57455c8a5c3bc5aea5bc7cfaaf8f.zip |
Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace
and this implemenation that backs our lldb::SBSourceManager should not be
exported.
llvm-svn: 140930
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index facf0e366ae..f71b8604bc9 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -825,6 +825,11 @@ SBDebugger::ref () const return *m_opaque_sp; } +const lldb::DebuggerSP & +SBDebugger::get_sp () const +{ + return m_opaque_sp; +} SBDebugger SBDebugger::FindDebuggerWithID (int id) |