summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBSourceManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBSourceManager.cpp')
-rw-r--r--lldb/source/API/SBSourceManager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/API/SBSourceManager.cpp b/lldb/source/API/SBSourceManager.cpp
index c8a0874c7e3..701665edb46 100644
--- a/lldb/source/API/SBSourceManager.cpp
+++ b/lldb/source/API/SBSourceManager.cpp
@@ -21,7 +21,7 @@ using namespace lldb_private;
SBSourceManager::SBSourceManager (SourceManager& source_manager) :
- m_source_manager (source_manager)
+ m_opaque_ref (source_manager)
{
}
@@ -48,12 +48,12 @@ SBSourceManager::DisplaySourceLinesWithLineNumbers
StreamFile str (f);
- return m_source_manager.DisplaySourceLinesWithLineNumbers (*file,
- line,
- context_before,
- context_after,
- current_line_cstr,
- &str);
+ return m_opaque_ref.DisplaySourceLinesWithLineNumbers (*file,
+ line,
+ context_before,
+ context_after,
+ current_line_cstr,
+ &str);
}
return 0;
}
@@ -61,5 +61,5 @@ SBSourceManager::DisplaySourceLinesWithLineNumbers
SourceManager &
SBSourceManager::GetLLDBManager ()
{
- return m_source_manager;
+ return m_opaque_ref;
}
OpenPOWER on IntegriCloud