Use a CompletionRequest in the expression command completion [NFC]
The patch was originally written before we had a CompletionRequest,
so it still used a StringList to pass back the completions to
the request.
llvm-svn: 341124
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
index 7fdc9c1..03ff55f 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
@@ -62,7 +62,7 @@
//------------------------------------------------------------------
~ClangExpressionParser() override;
- bool Complete(StringList &matches, unsigned line, unsigned pos,
+ bool Complete(CompletionRequest &request, unsigned line, unsigned pos,
unsigned typed_pos) override;
//------------------------------------------------------------------