[PATCH] D50645: [clangd] Show non-instantiated decls in signatureHelp
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 14 00:43:56 PDT 2018
hokein accepted this revision.
hokein added a comment.
This revision is now accepted and ready to land.
looks good.
================
Comment at: clangd/CodeComplete.cpp:721
+ // would get 'std::basic_string<char>').
+ if (auto Func = Candidate.getFunction()) {
+ if (auto Pattern = Func->getTemplateInstantiationPattern())
----------------
nit: auto*, the same below.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D50645
More information about the cfe-commits
mailing list