Skip to content

Commit d2848a7

Browse files
Update lldb/source/Interpreter/OptionValueFileSpecList.cpp
Co-authored-by: Jonas Devlieghere <[email protected]>
1 parent f455bb7 commit d2848a7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Interpreter/OptionValueFileSpecList.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ llvm::json::Value
4545
OptionValueFileSpecList::ToJSON(const ExecutionContext *exe_ctx) {
4646
std::lock_guard<std::recursive_mutex> lock(m_mutex);
4747
llvm::json::Array spec_list;
48-
for (const auto &file_spec : m_current_value) {
48+
for (const auto &file_spec : m_current_value)
4949
spec_list.emplace_back(file_spec.ToJSON());
50-
}
5150
return spec_list;
5251
}
5352

0 commit comments

Comments
 (0)