[clang-tools-extra] [clangd] Add inlay hints for default function arguments and implicit lambda captures (PR #95712)
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 2 22:06:39 PDT 2024
================
@@ -709,7 +762,8 @@ class InlayHintVisitor : public RecursiveASTVisitor<InlayHintVisitor> {
private:
using NameVec = SmallVector<StringRef, 8>;
- void processCall(Callee Callee, llvm::ArrayRef<const Expr *> Args) {
+ void processCall(Callee Callee, SourceRange LParenOrBraceRange,
----------------
HighCommander4 wrote:
parameter is called **L**ParenOrBraceRange, but one call site passes E->get**R**ParenLoc()
https://github.com/llvm/llvm-project/pull/95712
More information about the cfe-commits
mailing list