This revision was automatically updated to reflect the committed changes.
Closed by commit rGcbd6ac6165e6: [clangd] Show parameter hints for operator()
(authored by zyounan).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D158926/new/
https://reviews.
zyounan updated this revision to Diff 556358.
zyounan marked an inline comment as done.
zyounan added a comment.
Address a nit comment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D158926/new/
https://reviews.llvm.org/D158926
Files:
clang-tools-
zyounan marked 2 inline comments as done.
zyounan added inline comments.
Comment at: clang-tools-extra/clangd/InlayHints.cpp:626
+ Method && Method->isInstance())
+Args = Args.drop_front(1);
+processCall(Callee, Args);
nridge wrote:
> Huh, th
nridge accepted this revision.
nridge added inline comments.
This revision is now accepted and ready to land.
Comment at: clang-tools-extra/clangd/InlayHints.cpp:626
+ Method && Method->isInstance())
+Args = Args.drop_front(1);
+processCall(Callee, Args);
---
zyounan created this revision.
zyounan added a reviewer: nridge.
Herald added subscribers: kadircet, arphaman.
Herald added a project: All.
zyounan requested review of this revision.
Herald added subscribers: cfe-commits, MaskRay, ilya-biryukov.
Herald added a project: clang-tools-extra.
Closes ht