diff options
author | Zachary Turner <zturner@google.com> | 2016-11-22 17:10:15 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-11-22 17:10:15 +0000 |
commit | d6a24757876e7c1d29113f41ea241db262d9609c (patch) | |
tree | 8bc7a925d2d5bb5cc73b321929e7414f19947577 /lldb/source/Commands/CommandObjectSettings.cpp | |
parent | 04dc211e6aa5936caf72297e2c305d2ae23096dd (diff) | |
download | bcm5719-llvm-d6a24757876e7c1d29113f41ea241db262d9609c.tar.gz bcm5719-llvm-d6a24757876e7c1d29113f41ea241db262d9609c.zip |
Re-add "demonstrate new Args API"
This fixes the build breakage due to the use of C++14.
llvm-svn: 287647
Diffstat (limited to 'lldb/source/Commands/CommandObjectSettings.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSettings.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lldb/source/Commands/CommandObjectSettings.cpp b/lldb/source/Commands/CommandObjectSettings.cpp index 0a97804fbf6..23fdcb9e895 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -293,15 +293,10 @@ protected: bool DoExecute(Args &args, CommandReturnObject &result) override { result.SetStatus(eReturnStatusSuccessFinishResult); - const size_t argc = args.GetArgumentCount(); if (!args.empty()) { - // TODO: Convert this to StringRef based enumeration. Requires converting - // DumpPropertyValue first. - for (size_t i = 0; i < argc; ++i) { - const char *property_path = args.GetArgumentAtIndex(i); - + for (const auto &arg : args) { Error error(m_interpreter.GetDebugger().DumpPropertyValue( - &m_exe_ctx, result.GetOutputStream(), property_path, + &m_exe_ctx, result.GetOutputStream(), arg.ref, OptionValue::eDumpGroupValue)); if (error.Success()) { result.GetOutputStream().EOL(); |