diff options
| author | Eric Liu <ioeric@google.com> | 2018-05-16 19:59:49 +0000 |
|---|---|---|
| committer | Eric Liu <ioeric@google.com> | 2018-05-16 19:59:49 +0000 |
| commit | f8947da9cee7228850866f1cf40c5452d358e441 (patch) | |
| tree | c9fad8df62f50bbf567a031bb0094a2d45793c2c | |
| parent | 02709bcb78a4c209d2bbe6541ae32308bc7c2833 (diff) | |
| download | bcm5719-llvm-f8947da9cee7228850866f1cf40c5452d358e441.tar.gz bcm5719-llvm-f8947da9cee7228850866f1cf40c5452d358e441.zip | |
Attempt to fix buildbot failure caused by r332363
Log: http://lab.llvm.org:8011/builders/clang-x86_64-linux-abi-test/builds/26399
llvm-svn: 332515
| -rw-r--r-- | clang-tools-extra/clangd/CodeComplete.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang-tools-extra/clangd/CodeComplete.cpp b/clang-tools-extra/clangd/CodeComplete.cpp index afac7ebca90..d00be58a19c 100644 --- a/clang-tools-extra/clangd/CodeComplete.cpp +++ b/clang-tools-extra/clangd/CodeComplete.cpp @@ -1069,9 +1069,8 @@ SignatureHelp signatureHelp(PathRef FileName, Options.IncludeBriefComments = false; semaCodeComplete(llvm::make_unique<SignatureHelpCollector>(Options, Result), Options, - {FileName, Command, Preamble, - /*PreambleInclusions=*/{}, Contents, Pos, std::move(VFS), - std::move(PCHs)}); + {FileName, Command, Preamble, std::vector<Inclusion>(), + Contents, Pos, std::move(VFS), std::move(PCHs)}); return Result; } |

