commit | c6e82e4a323d7a7168b05365c53c9bc2e0d418e3 | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Wed Aug 22 18:39:03 2012 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Wed Aug 22 18:39:03 2012 +0000 |
tree | 40e098b47879adf6761ab45068c8b0d301d23365 | |
parent | 85fbe9d6b0e01cac3190fe74850ade7a9ece8782 [diff] [blame] |
Remove further outdated "settings" code and also implement a few missing things. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@162376 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/OptionValueFileSpec.cpp b/source/Interpreter/OptionValueFileSpec.cpp index 20b0b04..3a1f26d 100644 --- a/source/Interpreter/OptionValueFileSpec.cpp +++ b/source/Interpreter/OptionValueFileSpec.cpp
@@ -113,4 +113,12 @@ +const lldb::DataBufferSP & +OptionValueFileSpec::GetFileContents() +{ + if (!m_data_sp && m_current_value) + m_data_sp = m_current_value.ReadFileContents(); + return m_data_sp; +} +