[NFC][Coroutines] Use structured binding with llvm::enumerate in CoroSplit (#116879)
[llvm-project.git] / lldb / source / Interpreter / OptionValueArgs.cpp
blob963651640539ea0dcf8a804fe0bc1d653fc8c0b7
1 //===-- OptionValueArgs.cpp -----------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "lldb/Interpreter/OptionValueArgs.h"
11 #include "lldb/Utility/Args.h"
13 using namespace lldb;
14 using namespace lldb_private;
16 size_t OptionValueArgs::GetArgs(Args &args) const {
17 args.Clear();
18 for (const auto &value : m_values)
19 args.AppendArgument(value->GetValueAs<llvm::StringRef>().value_or(""));
20 return args.GetArgumentCount();