Details
Details
- Reviewers
nridge - Commits
- rGcbd6ac6165e6: [clangd] Show parameter hints for operator()
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clangd/InlayHints.cpp | ||
---|---|---|
626 | Huh, that's an interesting inconsistency between CXXMemberCallExpr and CXXOperatorCallExpr (that one include th implied object argument in getArgs() and the other doesn't) As always, thank you for writing thorough tests that give us confidence we're doing the right thing :) | |
1223 | nit: this method can be static |
clang-tools-extra/clangd/InlayHints.cpp | ||
---|---|---|
626 | I'm glad to hear that! Thank you. |
Huh, that's an interesting inconsistency between CXXMemberCallExpr and CXXOperatorCallExpr (that one include th implied object argument in getArgs() and the other doesn't)
As always, thank you for writing thorough tests that give us confidence we're doing the right thing :)