[clang-tools-extra] clangd: Make callHierarchy follow inheritance (PR #163024)

via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 20 00:47:24 PDT 2025


================
@@ -1627,6 +1627,10 @@ struct CallHierarchyIncomingCall {
   /// The range at which the calls appear.
   /// This is relative to the caller denoted by `From`.
   std::vector<Range> fromRanges;
+
+  /// This caller might be a false positive.
+  /// We currently have no way of 100% confirming this.
+  bool mightNeverCall = false;
----------------
timon-ul wrote:

Should be a lot clearer now.

https://github.com/llvm/llvm-project/pull/163024


More information about the cfe-commits mailing list