[clang] [Clang] Remove unnecessary copy (PR #97902)

via cfe-commits cfe-commits at lists.llvm.org
Tue Jul 16 05:51:00 PDT 2024


================
@@ -1551,7 +1551,7 @@ ASTNodeImporter::VisitCountAttributedType(const CountAttributedType *T) {
   Expr *CountExpr = importChecked(Err, T->getCountExpr());
 
   SmallVector<TypeCoupledDeclRefInfo, 1> CoupledDecls;
-  for (auto TI : T->dependent_decls()) {
+  for (const TypeCoupledDeclRefInfo &TI : T->dependent_decls()) {
----------------
smanna12 wrote:

Thank you @JOE1994 for reviews. I have updated patch.

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


More information about the cfe-commits mailing list