diff options
author | Kuba Mracek <mracek@apple.com> | 2018-10-31 00:29:17 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2018-10-31 00:29:17 +0000 |
commit | 377f9f9b3f65b530887d6bf0042799d1765b42d6 (patch) | |
tree | a6cc9ffd81a1940ec9bcbf83598e27e3fc90d438 /lldb/source/API/SBVariablesOptions.cpp | |
parent | 9fd397b423ba442808957e65e3ad25a07cd203e4 (diff) | |
download | bcm5719-llvm-377f9f9b3f65b530887d6bf0042799d1765b42d6.tar.gz bcm5719-llvm-377f9f9b3f65b530887d6bf0042799d1765b42d6.zip |
Revert r345678 (build failure on Linux machines).
llvm-svn: 345680
Diffstat (limited to 'lldb/source/API/SBVariablesOptions.cpp')
-rw-r--r-- | lldb/source/API/SBVariablesOptions.cpp | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/lldb/source/API/SBVariablesOptions.cpp b/lldb/source/API/SBVariablesOptions.cpp index ae069756de1..e12b9696521 100644 --- a/lldb/source/API/SBVariablesOptions.cpp +++ b/lldb/source/API/SBVariablesOptions.cpp @@ -16,9 +16,9 @@ using namespace lldb_private; class VariablesOptionsImpl { public: VariablesOptionsImpl() - : m_include_arguments(false), m_include_recognized_arguments(false), - m_include_locals(false), m_include_statics(false), - m_in_scope_only(false), m_include_runtime_support_values(false), + : m_include_arguments(false), m_include_locals(false), + m_include_statics(false), m_in_scope_only(false), + m_include_runtime_support_values(false), m_use_dynamic(lldb::eNoDynamicValues) {} VariablesOptionsImpl(const VariablesOptionsImpl &) = default; @@ -31,14 +31,6 @@ public: void SetIncludeArguments(bool b) { m_include_arguments = b; } - bool GetIncludeRecognizedArguments() const { - return m_include_recognized_arguments; - } - - void SetIncludeRecognizedArguments(bool b) { - m_include_recognized_arguments = b; - } - bool GetIncludeLocals() const { return m_include_locals; } void SetIncludeLocals(bool b) { m_include_locals = b; } @@ -65,7 +57,6 @@ public: private: bool m_include_arguments : 1; - bool m_include_recognized_arguments : 1; bool m_include_locals : 1; bool m_include_statics : 1; bool m_in_scope_only : 1; @@ -99,14 +90,6 @@ void SBVariablesOptions::SetIncludeArguments(bool arguments) { m_opaque_ap->SetIncludeArguments(arguments); } -bool SBVariablesOptions::GetIncludeRecognizedArguments() const { - return m_opaque_ap->GetIncludeRecognizedArguments(); -} - -void SBVariablesOptions::SetIncludeRecognizedArguments(bool arguments) { - m_opaque_ap->SetIncludeRecognizedArguments(arguments); -} - bool SBVariablesOptions::GetIncludeLocals() const { return m_opaque_ap->GetIncludeLocals(); } |