Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace
and this implemenation that backs our lldb::SBSourceManager should not be
exported.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@140930 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBTarget.cpp b/source/API/SBTarget.cpp
index f4ad92d..28bb109 100644
--- a/source/API/SBTarget.cpp
+++ b/source/API/SBTarget.cpp
@@ -499,6 +499,12 @@
return m_opaque_sp.get();
}
+const lldb::TargetSP &
+SBTarget::get_sp () const
+{
+ return m_opaque_sp;
+}
+
void
SBTarget::reset (const lldb::TargetSP& target_sp)
{