diff options
author | Zachary Turner <zturner@google.com> | 2015-02-17 17:55:50 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-17 17:55:50 +0000 |
commit | 51f96eeb247690a2d0dbafbfa42d15df66bacb82 (patch) | |
tree | 178a3d82fc0e6034327ae9894b57021a7df7301b /lldb/scripts/Python/interface/SBFrame.i | |
parent | a9614171a72f8ff5716459ad09def85d4f1089e0 (diff) | |
download | bcm5719-llvm-51f96eeb247690a2d0dbafbfa42d15df66bacb82.tar.gz bcm5719-llvm-51f96eeb247690a2d0dbafbfa42d15df66bacb82.zip |
Revert "Revert "I had recently added a new SBFrame::GetVariables() overload with yet another bool argument""
Reverting this commit led to other failures which I did not see at
first. This turned out to be an easy problem to fix, so I added
SBVariablesOptions.cpp to the CMakeLists.txt. In the future please
try to make sure new files are added to CMake.
llvm-svn: 229516
Diffstat (limited to 'lldb/scripts/Python/interface/SBFrame.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBFrame.i | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i index 5cacb5ea1b3..b1d1e4e9215 100644 --- a/lldb/scripts/Python/interface/SBFrame.i +++ b/lldb/scripts/Python/interface/SBFrame.i @@ -199,12 +199,7 @@ public: lldb::DynamicValueType use_dynamic); lldb::SBValueList - GetVariables (bool arguments, - bool locals, - bool statics, - bool in_scope_only, - bool include_runtime_support_values, - lldb::DynamicValueType use_dynamic); + GetVariables (const lldb::SBVariablesOptions& options); lldb::SBValueList GetRegisters (); |