aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp')
-rw-r--r--contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp b/contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp
index 1aa3476eb357..37c4b79f8e29 100644
--- a/contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp
+++ b/contrib/llvm-project/llvm/lib/LineEditor/LineEditor.cpp
@@ -69,9 +69,8 @@ LineEditor::ListCompleterConcept::complete(StringRef Buffer, size_t Pos) const {
// common prefix will then be empty.
if (CommonPrefix.empty()) {
Action.Kind = CompletionAction::AK_ShowCompletions;
- for (std::vector<Completion>::iterator I = Comps.begin(), E = Comps.end();
- I != E; ++I)
- Action.Completions.push_back(I->DisplayText);
+ for (const Completion &Comp : Comps)
+ Action.Completions.push_back(Comp.DisplayText);
} else {
Action.Kind = CompletionAction::AK_Insert;
Action.Text = CommonPrefix;