dev-priyanshu15 wrote: Thanks for the review feedback.
I've fixed the issue fully in CXType.cpp by treating any implicit TemplateTypeParmType as CXType_Auto, which correctly handles both unconstrained auto (e.g., `auto p`) and constrained auto (e.g., `Integral auto q`). I've also added Index tests covering both unconstrained and constrained auto parameter cases in the test file. The fix is now in the correct layer (type classification) and handles all auto parameter variants as indicated by your review. https://github.com/llvm/llvm-project/pull/172092 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
