summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Liu <ioeric@google.com>2018-05-16 19:59:49 +0000
committerEric Liu <ioeric@google.com>2018-05-16 19:59:49 +0000
commitf8947da9cee7228850866f1cf40c5452d358e441 (patch)
treec9fad8df62f50bbf567a031bb0094a2d45793c2c
parent02709bcb78a4c209d2bbe6541ae32308bc7c2833 (diff)
downloadbcm5719-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.cpp5
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;
}
OpenPOWER on IntegriCloud