Skip to content

Commit e46386b

Browse files
committed
Appease the formatter
1 parent ae4e7a1 commit e46386b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/source/Host/common/Editline.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,10 +1047,10 @@ void Editline::DisplayCompletions(
10471047

10481048
size_t cur_pos = 0;
10491049
while (cur_pos < results.size()) {
1050-
cur_pos += PrintCompletion(
1051-
editline.m_output_file, results.slice(cur_pos), max_len,
1052-
editline.GetTerminalWidth(),
1053-
all ? std::nullopt : std::optional<size_t>(page_size));
1050+
cur_pos +=
1051+
PrintCompletion(editline.m_output_file, results.slice(cur_pos), max_len,
1052+
editline.GetTerminalWidth(),
1053+
all ? std::nullopt : std::optional<size_t>(page_size));
10541054

10551055
if (cur_pos >= results.size())
10561056
break;

0 commit comments

Comments
 (0)