[clang] [clang-tools-extra] [clangd] show lambda name instead of operator() in signature help (PR #101857)
Younan Zhang via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 6 08:33:22 PDT 2024
================
@@ -1139,6 +1139,8 @@ class SignatureHelpCollector final : public CodeCompleteConsumer {
switch (K) {
case OC::CK_Aggregate:
return 0;
+ case OC::CK_Lambda:
+ [[fallthrough]];
----------------
zyn0217 wrote:
```suggestion
```
https://github.com/llvm/llvm-project/pull/101857
More information about the cfe-commits
mailing list