[clangd] Report only decl of overridding method in xref.
See: https://github.com/clangd/clangd/issues/668 ``` struct A { virtual void foo() = 0; }; struct B : A { void foo() override; }; ``` Find refs on `A::foo()` will show: - decls of `A::foo()` - decls of `B::foo()` - refs to `A::foo()` - no refs to `B::foo()`. Differential Revision: https://reviews.llvm.org/D95812
Loading
Please sign in to comment